cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A080698 Product of twin-prime-indexed primes and their lower bound twin prime.

Original entry on oeis.org

15, 55, 341, 1003, 3161, 7339, 16343, 25063, 55247, 62809, 105901, 127991, 190277, 220223, 236597, 325291, 358261, 463487, 512263, 641593, 812327, 1213843, 1293431, 1502399, 1944893, 2351677, 2633803, 2806733, 3050519, 3250847
Offset: 1

Views

Author

Cino Hilliard, Mar 04 2003

Keywords

Examples

			The 3rd pair of twin primes is twin(3) = (11,13), prime(11) = 31. a(3) = 31*11 = 341.
		

Crossrefs

Cf. A057470.

Programs

  • Mathematica
    # Prime[#]&/@Select[Partition[Prime[Range[200]],2,1],#[[2]]-#[[1]]==2&][[All,1]] (* Harvey P. Dale, Apr 10 2019 *)
  • PARI
    twipxpindex(n) = {sr=0; pr=1; for(x=1,n, p1=prime(x); p2=prime(x+1); if((p2-p1)==2, pr=p1*prime(prime(x)); sr+=1.0/pr; print1(pr" ")); ); print(); print(sr) }

Formula

Let prime(i) = i-th prime, let twin(n) = (P, Q) be n-th pair of twin primes; sequence gives prime(P)*P.