login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A080697
a(n) = n * prime(prime(n)).
4
3, 10, 33, 68, 155, 246, 413, 536, 747, 1090, 1397, 1884, 2327, 2674, 3165, 3856, 4709, 5094, 6289, 7060, 7707, 8822, 9913, 11064, 12725, 14222, 15201, 16436, 17371, 18510, 21979, 23648, 25509, 27098, 30065, 31572, 34003, 36746, 38649, 41240
OFFSET
1,1
COMMENTS
Previous name was: "Product of prime-index-primes and the index of their prime index".
Sum of reciprocals converges to about 1/2. [More accurately, 0.50056748... . - Amiram Eldar, Jul 13 2024]
LINKS
FORMULA
a(n) = n*A006450(n). - Omar E. Pol, Oct 21 2013
EXAMPLE
a(1) = 1*prime(prime(1)) = 1*prime(2) = 1*3 = 3.
a(2) = 2*prime(prime(2)) = 2*prime(3) = 2*5 = 10.
MATHEMATICA
Table[n Prime[Prime[n]], {n, 1, 40}] (* Vincenzo Librandi, Jun 09 2016 *)
PROG
(PARI) pipxindex(n) = {sr=0; pr=1; for(x=1, n, y=prime(prime(x)); pr=x*y; print1(pr" "); sr+=1.0/pr; ); print(); print(sr) }
(Magma) [n*NthPrime(NthPrime(n)): n in [1..40]]; // Vincenzo Librandi, Jun 09 2016
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Cino Hilliard, Mar 04 2003
EXTENSIONS
New name from Omar E. Pol, Oct 21 2013
STATUS
approved