A365598 Near-repdigit primes with at least two 9's as the repeated digit, and ending in a distinct digit.
991, 997, 99991, 9999991, 99999999999999997, 999999999999999999999999999999991, 999999999999999999999999999999999999999999991
Offset: 1
Examples
99991 is a term because all digits are equal to 9 except the last one.
Links
- Robert Israel, Table of n, a(n) for n = 1..15 (first 14 terms from Robert Price)
Crossrefs
Programs
-
Maple
R:= NULL: count:= 0: for n from 3 to 999 do for d in [9,3] do if isprime(10^n - d) then R:= R, 10^n-d; count:= count+1; fi od od: R;
Extensions
Definition corrected by M. F. Hasler, Jun 20 2025
Comments