OFFSET
1,1
COMMENTS
Leading zeros are not permitted, so each term is 10 digits in length.
The sequence A103752 has erroneously the same definition; the actual definition of the terms is unknown. - M. F. Hasler, Nov 01 2014
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..1000
MATHEMATICA
With[{len=10}, Select[FromDigits/@Partition[RealDigits[GoldenRatio, 10, 1000][[1]], len, 1], IntegerLength[#]==len&&PrimeQ[#]&]]
PROG
(PARI) default(realprecision, N=1000); m=10^10; phi=sqrt(5/4)+.5; for(k=9, N, isprime(phi\.1^k%m)||next; (p=phi\.1^k%m)>10^9&&print1(p", ")) \\ M. F. Hasler, Oct 31 2014
CROSSREFS
See also, for e: A104843, A104844, A104845, A104846, A104847, A104848, A104849, A104850, A104851; for Pi: A198175, A198170, A104824, A104825, A104826, A198171, A198172, A198173, A198174; for sqrt(2): A198162, A198163, A198164, A198165, A198166, A198167, A198168, A198169, A198161; for the Euler-Mascheroni constant gamma: A198776, A198777, A198778, A198779, A198780, A198781, A198782, A198783, A198784.
KEYWORD
nonn,base
AUTHOR
Harvey P. Dale, Oct 21 2011
STATUS
approved