cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A122148 Numerator of Sum[ (-1)^(k+1) * 1/p(k)^p(k), {k,1,n}], where p(k) = Prime[k].

Original entry on oeis.org

1, 23, 71983, 59280758269, 16913492177093188294859, 5122675745984257357873512804013239827, 4237683625666802603266159755806379107958975382128522814879
Offset: 1

Views

Author

Alexander Adamchuk, Aug 22 2006

Keywords

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

Examples

			a[n] / A076265[n] begins 1/4, 23/108, 71983/337500, ...
		

Crossrefs

Programs

  • Mathematica
    Table[Numerator[Sum[(-1)^(k+1)*1/Prime[k]^Prime[k],{k,1,n}]],{n,1,10}]

Formula

a(n) = Numerator[ Sum[ (-1)^(k+1) * 1/Prime[k]^Prime[k], {k,1,n} ] ].