login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A108817 Primes of the form n*10^x + n - 1, where 0 < n < 9, x = 0,1,2,3... 0
3, 5, 7, 11, 13, 43, 4003, 40000003, 40000000003, 40000000000000000000000000000000000000003 (list; graph; refs; listen; history; internal format)
OFFSET

1,1

COMMENTS

The next 2 terms for x <= 1000 are 4*10^419+3 and 4*10^449+3 both PARI proved primes. Except for the first 5 terms, the outer digits of these numbers are 4 and 3. This follows from the fact that all other combinations produce multiples of 2,3 or 5.

EXAMPLE

n=4,x=3. a(x,n) = 4*10^3+4-1 = 4003 prime.

PROG

(PARI) n10nm1(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: A179739 A093988 A175914 * A123677 A133954 A087325

Adjacent sequences:  A108814 A108815 A108816 * A108818 A108819 A108820

KEYWORD

nonn

AUTHOR

Cino Hilliard (hillcino368(AT)gmail.com), Jul 11, 2005

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 16 23:45 EST 2012. Contains 205978 sequences.