OFFSET
1,1
COMMENTS
Leading zeros are not permitted, so each term is 10 digits in length.
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..1000
MATHEMATICA
With[{len=10}, Select[FromDigits/@Partition[RealDigits[Sqrt[2], 10, 1000][[1]], len, 1], IntegerLength[#]==len&&PrimeQ[#]&]]
PROG
(PARI) A198161(n, x=sqrt(2), m=10, silent=0)={m=10^m; for(k=1, default(realprecision), (isprime(p=x\.1^k%m)&&p*10>m)||next; silent||print1(p", "); n--||return(p))} \\ The optional arguments can be used to produce other sequences of this series (cf. Crossrefs). Use e.g. \p999 to set precision to 999 digits. - M. F. Hasler, Nov 02 2014
CROSSREFS
For sqrt(2), see also A198162, A198163, A198164, A198165,A198166, A198167, A198168, A198169, A198161 (this sequence).
For the Golden Ratio, see A198177, A103773, A103789, A103793, A103808, A103809, A103810, A103811, A103812.
KEYWORD
nonn,base
AUTHOR
Harvey P. Dale, Oct 21 2011
STATUS
approved