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!)
A210488 a(n) is the index of A210487 when the n-th prime appears for the first time. 1
3, 4, 2, 20, 60, 92, 246, 752, 1289, 2084, 3383 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
In A210487, 2 appears for the first time as A210487(3), so a(1)=3;
3 appears for the first time as A210487(4), so a(2)=4;
5 appears for the first time as A210487(2), so a(3)=2.
MAPLE
N := 60 ;
A210488 := [seq(0, i=1..N)] ;
for n from 2 do
a := A210487(n) ;
if isprime(a) then
idx := numtheory[pi](a) ;
if idx <= N then
if op(idx, A210488) = 0 then
A210488 := subsop(idx=n, A210488) ;
print(A210488) ;
end if;
end if;
end if;
end do: # R. J. Mathar, Apr 17 2013
MATHEMATICA
nn = 11; a = Table[0, {nn}]; k = 1; While[Times @@ a == 0, k++; p1 = Prime[k]; id = PrimePi[Min[Table[Last[FactorInteger[Prime[k]^2 - Prime[j]^2]][[1]], {j, k - 1}]]]; If[id <= nn && a[[id]] == 0, a[[id]] = k]]; a
CROSSREFS
Sequence in context: A166074 A225475 A259334 * A244364 A218610 A346058
KEYWORD
nonn,hard
AUTHOR
Lei Zhou, Jan 23 2013
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 19 23:15 EDT 2024. Contains 371798 sequences. (Running on oeis4.)