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”).

A119658
Area of consecutive Prime-Indexed Prime rectangles.
1
15, 55, 187, 527, 1271, 2419, 3953, 5561, 9047, 13843, 19939, 28103, 34189, 40301, 50851, 66757, 78391, 93673, 116843, 129551, 147167, 172831, 198691, 234649, 278423, 307961, 330481, 351613, 369583, 437453, 523951, 571247, 616081, 684623
OFFSET
1,1
COMMENTS
This could also be called the product of consecutive Prime-Indexed Primes.
LINKS
FORMULA
A prime index is the numerical position of a prime number in the sequence of prime numbers. A Prime-Indexed Prime (PIP) is a prime number whose index is also prime. A Prime-Indexed Prime rectangle is a rectangle whose sides are components of Prime-Indexed Primes.
EXAMPLE
The second set of consecutive PIPs, 5 and 11, produce a 5 X 11 unit rectangle whose area is 55 square units.
MATHEMATICA
Times@@@Partition[Prime[Prime[Range[40]]], 2, 1] (* Harvey P. Dale, Aug 02 2013 *)
PROG
(PARI) g(n) = for(x=1, n, print1(prime(prime(x))*prime(prime(x+1))", "))
CROSSREFS
Sequence in context: A211797 A172436 A119134 * A072745 A141839 A080698
KEYWORD
nonn
AUTHOR
Cino Hilliard, Jul 28 2006
STATUS
approved