OFFSET
1,1
COMMENTS
This could also be called the product of consecutive Prime-Indexed Primes.
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
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
KEYWORD
nonn
AUTHOR
Cino Hilliard, Jul 28 2006
STATUS
approved