Difference between revisions of "ZCubes/Devil's Primes"

From ZCubes Wiki
Jump to navigation Jump to search
Line 1: Line 1:
 
==Devil's Primes==
 
==Devil's Primes==
 
<br/>
 
<br/>
This video computes the devil's primes, for example, the number 16661, 1 followed by thirteen 0s then 666 and then thirteen 0s and then ending with one. These are called devil's prime due to common beliefs around the numbers 666 and 13 etc. Z has a built-in function to check if a number is a prime number and also can deal with large integer computations. This ability opens up our capability to discover interesting numbers and patterns and their specialties.
+
This video computes the devil's primes, for example, the number 16661, 1 followed by thirteen 0s then 666 and then thirteen 0s and then ending with 1. These are called devil's prime due to common beliefs around the numbers 666 and 13 etc. Z has a built-in function to check if a number is a prime number and also can deal with large integer computations. This ability opens up our capability to discover interesting numbers and patterns and their specialties.
  
 
==Video==
 
==Video==

Revision as of 04:43, 1 September 2020

Devil's Primes


This video computes the devil's primes, for example, the number 16661, 1 followed by thirteen 0s then 666 and then thirteen 0s and then ending with 1. These are called devil's prime due to common beliefs around the numbers 666 and 13 etc. Z has a built-in function to check if a number is a prime number and also can deal with large integer computations. This ability opens up our capability to discover interesting numbers and patterns and their specialties.

Video


Devil's Prime














Code-Devil's Primes

ISPRIME(1000000000000066600000000000001<>n)
ops.on;
(n=>(((10n^(n+1)+(666))*(10n^(n-1)))+1))@1..20
(n=>(((10n^(n+1)+(666))*(10n^(n-1)))+1))@2..200
a.map((x,i)=>([i,ISPRIME(x)]))
  .filter(r=>r[1][0]))

<< About ZCubes


© Copyright 1996-2020, ZCubes, Inc.