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

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A088754 Number of n-digit primes beginning with prime(n). 6
1, 2, 14, 107, 103, 851, 6931, 59557, 518971, 4585526, 41368791, 375232730, 3441863700, 31843327587 (list; graph; refs; listen; history; internal format)
OFFSET

1,2

COMMENTS

Subsidiary sequence suggested in A088104.

EXAMPLE

a(2)=2 since 31 and 37 are the only two 2-digit primes beginning with prime(2)=3.

PROG

(PARI) A088754(n)={ local (resul, sdig, p, lo, hi) ; sdig=prime(n) ; lo=sdig ; hi=sdig+1 ; while( lo < 10^(n-1), lo *= 10 ; hi *= 10 ; ) ; resul=0 ; p=nextprime(lo) ; while(p < hi, resul++ ; p=nextprime(p+1) ; ) ; return(resul) ; } { for(n=1, 11, print(A088754(n)); ) } - R. J. Mathar (mathar(AT)strw.leidenuniv.nl), Sep 25 2006

CROSSREFS

Cf. A077504, A077505, A088104, A088105, A088755.

Sequence in context: A051708 A074618 A108436 * A103945 A111713 A144278

Adjacent sequences:  A088751 A088752 A088753 * A088755 A088756 A088757

KEYWORD

more,nonn,base

AUTHOR

Ray Chandler (rayjchandler(AT)sbcglobal.net), Oct 15 2003

EXTENSIONS

One more term from R. J. Mathar (mathar(AT)strw.leidenuniv.nl), Sep 25 2006

a(11) - a(14) from Floris P. van Doorn and Jasper Mulder (florisvandoorn(AT)hotmail.com), Oct 12 2009

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 17 19:13 EST 2012. Contains 206085 sequences.