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!)
A174009 Numbers n such that A174008(k)=n-th prime. 1
1, 4, 5, 11, 13, 16, 18, 19, 20, 25, 33, 37, 38, 39, 40, 48, 52, 59, 60, 69, 72, 73, 76, 79, 84, 85, 86, 87, 96, 98, 104, 110, 117, 122, 135, 136, 140, 142, 145, 151, 153, 160, 162, 173, 179, 183, 186, 191, 192, 199, 200, 206, 214, 218, 221, 226, 232, 234, 239, 242 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
n-th prime in sequence A174008.
LINKS
EXAMPLE
a(1)=1 because A174008(1)=2=1st prime;
a(2)=4 because A174008(2)=7=4th prime;
a(3)=5 because A174008(3)=11=5th prime;
a(4)=11 because A174008(7)=31=11th prime.
MAPLE
From R. J. Mathar, Apr 28 2010: (Start)
A163300 := proc(n) option remember ; if n = 1 then 0; else for a from procname(n-1)+2 by 2 do if not isprime(a) then return a ; end if; end do; end if; end proc:
A174008 := proc(n) ithprime(n)+A163300(n) ; end proc:
A174009 := proc(k) p := A174008(k) ; if isprime(p) then printf("%d, ", numtheory[pi](p) ) ; end if; return ; end proc:
seq(A174009(k), k=1..400 ) ; (End)
CROSSREFS
Sequence in context: A066828 A163098 A216562 * A370980 A039006 A191209
KEYWORD
nonn
AUTHOR
EXTENSIONS
More terms from R. J. Mathar, Apr 28 2010
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 March 28 18:04 EDT 2024. Contains 371254 sequences. (Running on oeis4.)