A253427 Number of left-truncatable n-digit primes with least significant digit 7.
1, 5, 17, 47, 89, 150, 199, 238, 264, 257, 230, 181, 139, 117, 70, 46, 33, 19, 11, 5, 5, 4, 3, 1
Offset: 1
Examples
a(1)=1 {7}; a(2)=5 {17,37,47,67,97}; ... a(23)=3 {57686312646216567629137, 95918918997653319693967, 96686312646216567629137}; a(24)=1 {357686312646216567629137}; see also A012885.
Links
- I. O. Angell and H. J. Godwin, On Truncatable Primes, Math. Comput. 31, 265-267, 1977.
- Eric Weisstein's World of Mathematics, Truncatable Prime
- Wikipedia, Truncatable prime
- Index entries for sequences related to truncatable primes
Programs
-
Maple
S[1]:= {7}: for n from 2 while nops(S[n-1]) > 0 do S[n]:= select(isprime, {seq(seq(i*10^(n-1)+s, i=1..9),s = S[n-1])}) od: seq(nops(S[i]),i=1..n-2); # Robert Israel, Jan 01 2015
Comments