OFFSET
1,1
COMMENTS
a(n) is the decimal representation of A139103(n) interpreted as binary number.
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..467
FORMULA
EXAMPLE
a(4)=74 because 74 written in base 2 is 1001010 and the string "1001010" shows the distribution of prime numbers up to the 4th prime, using "0" for primes and "1" for nonprime numbers.
MATHEMATICA
Table[ sum = 0; For[i = 1, i <= Prime[n] , i++, sum = sum*2;
If[! PrimeQ[i], sum++]]; sum, {n, 1, 21}] (* Robert Price, Apr 03 2019 *)
Module[{nn=30, t}, t=Table[If[PrimeQ[n], 0, 1], {n, Prime[nn]}]; Table[ FromDigits[ Take[t, p], 2], {p, Prime[Range[nn]]}]] (* Harvey P. Dale, Jul 15 2019 *)
PROG
(PARI) a(n) = fromdigits(vector(prime(n), k, !isprime(k)), 2); \\ Michel Marcus, Apr 04 2019
CROSSREFS
KEYWORD
nonn
AUTHOR
Omar E. Pol, Apr 08 2008
EXTENSIONS
More terms from R. J. Mathar, May 22 2008
a(19)-a(21) from Robert Price, Apr 03 2019
STATUS
approved