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!)
A108816 Primes of the form n*10^x+n+1, where 0 < n < 9, x=0,1,2.. 0
3, 5, 7, 11, 13, 17, 23, 67, 89, 607, 809, 2003, 6007, 8009, 200003, 2000003, 8000009, 20000003, 600000007, 6000000007, 2000000000003, 8000000000009, 20000000000000003, 200000000000000003, 60000000000000000007 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
n=2,x=3. a(x,n) = 2*10^3+2+1 = 2003 prime.
MATHEMATICA
Select[Union[Flatten[Table[n*10^x+n+1, {n, 8}, {x, 0, 20}]]], PrimeQ] (* Harvey P. Dale, Jul 09 2020 *)
PROG
(PARI) n10np1(n) = { local(x, y, k); for(x=0, n, for(k=1, 8, y=10^x*k+k+1; if(isprime(y), print1(y", ")) ) ) }
CROSSREFS
Sequence in context: A154868 A274987 A020628 * A088503 A118939 A239391
KEYWORD
nonn
AUTHOR
Cino Hilliard, Jul 10, 2005
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 25 08:27 EDT 2024. Contains 371964 sequences. (Running on oeis4.)