The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A108826 Primes such that the outer 2 digits are n and n+1 and all inner digits are 8, where 0 < n < 9. 0
283, 28888883, 88888888888889, 88888888888888889, 28888888888888888888888888883, 6888888888888888888888888888888887, 88888888888888888888888888888888889, 6888888888888888888888888888888888888888888888888888888888888888888888887, 28888888888888888888888888888888888888888888888888888888888888888888888883 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
a(x) = 10^(x+1)*n+floor(10^x*8/9)*10+n+1. Output if a(x) is prime.
MATHEMATICA
Select[FromDigits/@Flatten[Table[Join[{n}, PadRight[{}, k, 8], {n+1}], {n, 8}, {k, 100}], 1], PrimeQ]//Sort (* Harvey P. Dale, Oct 09 2018 *)
PROG
(PARI) n10np1(n) = { local(x, y, k); for(x=1, n, for(k=1, 8, y=10^(x+1)*k+floor(10^x*8/9)*10+k+1; if(isprime(y), print1(y", ")) ) ) }
CROSSREFS
Sequence in context: A064964 A372402 A263670 * A285890 A356219 A061310
KEYWORD
easy,nonn,base
AUTHOR
Cino Hilliard, Jul 11 2005
EXTENSIONS
More terms from Harvey P. Dale, Oct 09 2018
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 June 11 14:45 EDT 2024. Contains 373311 sequences. (Running on oeis4.)