OFFSET
1,1
COMMENTS
Euler-Mascheroni Gamma = 0.577215664901532860606512090082402431042...
EXAMPLE
Positions in A001620: 1, 13, 1, 43, 8, 46, 30, 3, 4, 3, 33, 3, 50, 38, 44, 96, 53, 31, 40, 64, ...
MAPLE
Digits := 10000: p0 := evalf(gamma)*10:for d from 1 to 20 do: id:=0:for i from
0 to 50000 while(id=0) do :q0:=trunc(p0*10^(i+d-1)): x:= irem(q0, 10^d): if type(x, prime)=true
and length(x)=d then printf(`%d, `, x):id:=1: else fi:od:od:~
MATHEMATICA
With[{eg=RealDigits[EulerGamma, 10, 250][[1]]}, Table[First[Select[ FromDigits/@Partition[eg, n, 1], PrimeQ[#]&&IntegerLength[#]==n&]], {n, 20}]] (* Harvey P. Dale, Sep 29 2011 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Michel Lagneau, Feb 15 2011
STATUS
approved