login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A102031
Indices of primes in sequence defined by A(0) = 19, A(n) = 10*A(n-1) - 1 for n > 0.
2
0, 2, 11, 266, 842, 6299, 37991, 54116, 121241, 121620
OFFSET
1,2
COMMENTS
Numbers n such that (170*10^n + 1)/9 is prime.
Numbers n such that digit 1 followed by n >= 0 occurrences of digit 8 followed by digit 9 is prime.
Numbers corresponding to terms <= 842 are certified primes.
a(11) > 2*10^5. - Robert Price, Nov 16 2014
REFERENCES
Klaus Brockhaus and Walter Oberschelp, Zahlenfolgen mit homogenem Ziffernkern, MNU 59/8 (2006), pp. 462-467.
FORMULA
a(n) = A102945(n) - 1.
EXAMPLE
1889 is prime, hence 2 is a term.
MAPLE
A102031:=n->`if`(isprime((170*10^n+1)/9), n, NULL): seq(A102031(n), n=0..10^3); # Wesley Ivan Hurt, Nov 16 2014
MATHEMATICA
Select[Range[0, 10^3], PrimeQ[(170*10^# + 1)/9] &] (* Wesley Ivan Hurt, Nov 16 2014 *)
PROG
(PARI) a=19; for(n=0, 1500, if(isprime(a), print1(n, ", ")); a=10*a-1)
(PARI) for(n=0, 1500, if(isprime((170*10^n+1)/9), print1(n, ", ")))
(Magma) [n: n in [0..300] | IsPrime((170*10^n+1) div 9)]; // Vincenzo Librandi, Nov 17 2014
CROSSREFS
KEYWORD
nonn,hard,more
AUTHOR
Klaus Brockhaus and Walter Oberschelp (oberschelp(AT)informatik.rwth-aachen.de), Dec 28 2004
EXTENSIONS
6299 from Herman Jamke (hermanjamke(AT)fastmail.fm), Dec 22 2007
a(7)-a(10) added by Max Alekseyev, Dec 12 2011
STATUS
approved