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

A138424
a(n) = (prime(n)^5 - prime(n))/2.
3
15, 120, 1560, 8400, 80520, 185640, 709920, 1238040, 3218160, 10255560, 14314560, 34671960, 57928080, 73504200, 114672480, 209097720, 357462120, 422298120, 675062520, 902114640, 1036535760, 1538528160, 1969520280, 2792029680
OFFSET
1,1
LINKS
FORMULA
a(n) = A138404(n)/2. - R. J. Mathar, Oct 15 2017
MATHEMATICA
a = {}; Do[p = Prime[n]; AppendTo[a, (p^5 - p)/2], {n, 1, 50}]; a
(#^5-#)/2&/@Prime[Range[30]] (* Harvey P. Dale, Oct 01 2017 *)
PROG
(Magma) [(NthPrime((n))^5 - NthPrime((n)))/2: n in [1..30] ]; // Vincenzo Librandi, Jun 18 2011
(PARI) forprime(p=2, 1e3, print1((p^5-p)/2", ")) \\ Charles R Greathouse IV, Jul 15 2011
CROSSREFS
Sequence in context: A022580 A321950 A081079 * A279267 A357602 A120794
KEYWORD
nonn,easy
AUTHOR
Artur Jasinski, Mar 19 2008
STATUS
approved