[go: up one dir, main page]

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”).

A122148
Numerator of Sum[ (-1)^(k+1) * 1/p(k)^p(k), {k,1,n}], where p(k) = Prime[k].
2
1, 23, 71983, 59280758269, 16913492177093188294859, 5122675745984257357873512804013239827, 4237683625666802603266159755806379107958975382128522814879
OFFSET
1,2
COMMENTS
C = Sum[ (-1)^(k+1) * 1/Prime[k]^Prime[k], {k,1,Infinity} ] = 1/2^2 - 1/3^3 + 1/5^5 - 1/7^7 + 1/11^11 - 1/13^13 + ... A122147[n] is a decimal expansion of C = 0.213281748700785698255627...
FORMULA
a(n) = Numerator[ Sum[ (-1)^(k+1) * 1/Prime[k]^Prime[k], {k,1,n} ] ].
EXAMPLE
a[n] / A076265[n] begins 1/4, 23/108, 71983/337500, ...
MATHEMATICA
Table[Numerator[Sum[(-1)^(k+1)*1/Prime[k]^Prime[k], {k, 1, n}]], {n, 1, 10}]
CROSSREFS
KEYWORD
frac,nonn
AUTHOR
Alexander Adamchuk, Aug 22 2006
STATUS
approved