login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A101737 Indices of primes in sequence defined by A(0) = 49, A(n) = 10*A(n-1) - 1 for n > 0. 1
2, 3, 5, 9, 11, 17, 39, 47, 95, 105, 113, 143, 363, 617, 1089, 11369, 59453, 196683 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Numbers n such that (440*10^n + 1)/9 is prime.
Numbers n such that digit 4 followed by n >= 0 occurrences of digit 8 followed by digit 9 is prime.
Numbers corresponding to terms <= 617 are certified primes.
a(19) > 2*10^5. - Robert Price, Mar 30 2015
REFERENCES
Klaus Brockhaus and Walter Oberschelp, Zahlenfolgen mit homogenem Ziffernkern, MNU 59/8 (2006), pp. 462-467.
LINKS
FORMULA
a(n) = A103000(n+1) - 1.
EXAMPLE
4889 is prime, hence 2 is a term.
MATHEMATICA
Select[Range[0, 10000], PrimeQ[(440*10^# + 1)/9] &]
PROG
(PARI) a=49; for(n=0, 1500, if(isprime(a), print1(n, ", ")); a=10*a-1)
(PARI) for(n=0, 1500, if(isprime((440*10^n+1)/9), print1(n, ", ")))
CROSSREFS
Sequence in context: A238657 A329327 A329357 * A176550 A364059 A293036
KEYWORD
nonn,hard,more
AUTHOR
Klaus Brockhaus and Walter Oberschelp (oberschelp(AT)informatik.rwth-aachen.de), Dec 14 2004
EXTENSIONS
a(16)-a(18) derived from A103000 by Robert Price, Mar 30 2015
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 16 17:36 EDT 2024. Contains 371749 sequences. (Running on oeis4.)