OFFSET
1,1
COMMENTS
All the terms in the sequence are 5-digit primes because leading zeros are not permitted.
LINKS
K. D. Bajpai, Table of n, a(n) for n = 1..4248
EXAMPLE
a(1) = 47441, which is prime. It is the first occurrence of a 5-digit prime in the decimal expansion of sqrt(2) + sqrt(3) + sqrt(5), i.e., 5.3823323(47441)76203873830873445 ...
MATHEMATICA
With[{len = 5}, Select[FromDigits /@Partition[RealDigits[Sqrt[2] + Sqrt[3] + Sqrt[5], 10, 1000][[1]], len, 1], IntegerLength[#] == len && PrimeQ[#] &]]
CROSSREFS
KEYWORD
nonn,base
AUTHOR
K. D. Bajpai, Apr 18 2014
STATUS
approved