A242833 Primes formed by the initial digits of the decimal expansion of 1/19, starting at the first nonzero digit in the expansion.
5, 52631, 5263157894736842105263157, 52631578947368421052631578947368421052631578947368421052631
Offset: 1
Links
- Jon E. Schoenfield, Table of n, a(n) for n = 1..6
Crossrefs
Programs
-
PARI
lista(nn) = {v = [5,2,6,3,1,5,7,8,9,4,7,3,6,8,4,2,1,0]; n = 0; for (i=0, nn, n = 10*n+ v[(i % 18)+1]; if (ispseudoprime(n), print1(n, ", ")););} \\ Michel Marcus, May 27 2014
Comments