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

A066116
a(n) = prime(n-2)*prime(n-1)^2*prime(n).
3
90, 525, 2695, 11011, 31603, 71383, 141151, 291479, 599633, 1031153, 1739999, 2674471, 3563023, 5034311, 7789357, 11254073, 14709113, 19441859, 24655531, 29890361, 37814219, 48436559, 63771971, 84577501, 101918191, 114651463
OFFSET
3,1
LINKS
FORMULA
a(n) = A000040(n-2)*A000040(n-1)^2*A000040(n) = A006094(n-1)*A006094(n) = A066117(3, n).
EXAMPLE
a(3) = 2*3^2*5 = 90.
PROG
(PARI) { for (n=3, 1000, a=prime(n-2)*prime(n-1)^2*prime(n); write("b066116.txt", n, " ", a) ) } \\ Harry J. Smith, Feb 01 2010
CROSSREFS
Cf. A047928.
Sequence in context: A284845 A203741 A203734 * A233638 A289792 A156738
KEYWORD
nonn
AUTHOR
Henry Bottomley, Dec 05 2001
STATUS
approved