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

A046065
a(n) = n^(n+2) - (n+2)^n.
9
-1, -2, 0, 118, 2800, 61318, 1417472, 35570638, 973741824, 29023111918, 938082635776, 32730551749894, 1227224552173568, 49239697945731382, 2105895743771443200, 95663702284183543582, 4600926951773050961920, 233592048827366522661214
OFFSET
0,2
LINKS
FORMULA
a(n) = n^(n+2) - (n+2)^n.
MATHEMATICA
a[n_]:=n^(n+2)-(n+2)^n; lst={}; Do[AppendTo[lst, a[n]], {n, 0, 4!}]; lst (* Vladimir Joseph Stephan Orlovsky, Dec 20 2008 *)
PROG
(Magma) [n^(n+2) -(n+2)^n: n in [0..40]]; // G. C. Greubel, Jul 14 2021
(Sage) [n^(n+2) -(n+2)^n for n in (0..40)] # G. C. Greubel, Jul 14 2021
CROSSREFS
Cf. A007925 (n^(n+1) - (n+1)^n).
Sequence in context: A009270 A033838 A181373 * A357542 A374275 A339185
KEYWORD
sign
STATUS
approved