login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A122152
Primes in A122150[n] = Numerator[ Sum[ (-1)^(k+1) * 1/2^Prime[k], {k,1,n} ] ].
3
5, 19, 327235662833, 578175370366880553282134492422436321419543414585625120508329411643068012549226892303, 39731908913255031966162449696446781074231732174358868548789339497630379824042353480418749055951
OFFSET
1,1
COMMENTS
A122150[n] = Numerator[ Sum[ (-1)^(k+1) * 1/2^Prime[k], {k,1,n} ] ] begins {1,1,5,19,305,1219,19505,78019,1248305,79891519,319566077,20452228927,327235662833,...}. Indices of primes in A122150[n] are listed in A122151[n] = {3,4,13,60,66,75,175,...}.
FORMULA
a(n) = A122150[ A122151[n] ].
MATHEMATICA
Do[f=Numerator[Sum[(-1)^(k+1)*1/2^Prime[k], {k, 1, n}]]; If[PrimeQ[f], Print[{n, f}]], {n, 1, 1000}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Alexander Adamchuk, Aug 22 2006
STATUS
approved