[go: up one dir, main page]

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

A138453
a(n) = ((n-th prime)^6-(n-th prime)^4)/2.
2
24, 324, 7500, 57624, 878460, 2399124, 12027024, 23457780, 73878024, 297058020, 443290080, 1281926124, 2373639240, 3158972124, 5387167824, 11078235324, 21084208140, 25753264260, 45219115524, 64037436120, 75652914024
OFFSET
1,1
MATHEMATICA
a = {}; Do[p = Prime[n]; AppendTo[a, (p^6 - p^4)/2], {n, 1, 24}]; a
PROG
(PARI) forprime(p=2, 1e3, print1((p^6-p^4)/2", ")) \\ Charles R Greathouse IV, Jul 15 2011
CROSSREFS
Sequence in context: A036221 A022652 A292298 * A004317 A295250 A295649
KEYWORD
nonn,easy
AUTHOR
Artur Jasinski, Mar 22 2008
STATUS
approved