A072952 Primes obtained as initial segments of the decimal expansion of the Euler-Mascheroni constant gamma = 0.5772... .
5, 577, 5772156649015328606065120900824024310421
Offset: 1
Examples
a(2) = 577, since 577 is the second prime obtained as initial segment of the decimal expansion of Euler-Mascheroni constant gamma = 0.577215664... .
Links
- Amiram Eldar, Table of n, a(n) for n = 1..4
- Eric Weisstein's World of Mathematics, Constant Primes.
- Eric Weisstein's World of Mathematics, Euler-Mascheroni Constant Digits.
- Index entries related to "constant primes".
Crossrefs
Programs
-
Mathematica
nn=200;With[{emc=RealDigits[EulerGamma,10,nn][[1]]},Select[Table[ FromDigits[ Take[emc,n]],{n,nn}],PrimeQ]] (* Harvey P. Dale, May 14 2013 *)
-
PARI
default(realprecision, 777); /* use that many digits */ A072952={(c=Euler, v=1/*set to 0 for indices (i.e., A065815) instead of values*/)->for(k=0, precision(c), ispseudoprime(p=c\.1^k)&&print1([k, p][1+v]", "))} \\ M. F. Hasler, Aug 31 2013
Comments