A127890 Largest n-digit right-truncatable prime.
7, 79, 797, 7393, 73939, 739399, 7393933, 73939133
Offset: 1
References
- Toby Howard, "Magic Pi - The Magic of Numbers", PC Advisor magazine, May 1998.
Links
- I. O. Angell and H. J. Godwin, On Truncatable Primes, Math. Comput. 31, 265-267, 1977.
- Jens Fehlau, 73939133 - Probably the Most Interesting Prime Number [Part 1] and [Part 2], Flammable Maths videos (2020).
- Index entries for sequences related to truncatable primes
Programs
-
PARI
A127890=vector(8, n, p=concat(apply(t->primes([t, t+1]*10), if(n>1, p)));p[#p]) \\ M. F. Hasler, Nov 07 2018
Comments