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

A061225
Numbers of the form k^3 + (k + 1)^4 + (k + 2)^5 + (k + 3)^6.
1
762, 4356, 16738, 50064, 126114, 280372, 566826, 1063488, 1878634, 3157764, 5091282, 7922896, 11958738, 17577204, 25239514, 35500992, 49023066, 66585988, 89102274, 117630864, 153392002, 197782836, 252393738, 319025344, 399706314
OFFSET
0,1
LINKS
FORMULA
G.f.: 2*(381 - 489*x + 1124*x^2 - 1148*x^3 + 687*x^4 - 227*x^5 + 32*x^6)/(1-x)^7. - Colin Barker, Apr 02 2012
EXAMPLE
a(1) = 1 + 2^4 + 3^5 + 4^6 = 1 + 16 + 243 + 4096 = 4356.
MATHEMATICA
Table[n^3+(n+1)^4+(n+2)^5+(n+3)^6, {n, 0, 30}] (* Harvey P. Dale, Mar 26 2011 *)
PROG
(Magma) [ n^3 + (n + 1)^4 + (n + 2)^5 + (n + 3)^6: n in [0..30]]; // Vincenzo Librandi, Aug 05 2011
CROSSREFS
Cf. A027621.
Sequence in context: A083642 A083643 A083644 * A253615 A253616 A253611
KEYWORD
easy,nonn
AUTHOR
Olivier Gérard, May 31 2001
EXTENSIONS
Offset changed from 1 to 0 by Vincenzo Librandi, Aug 05 2011
STATUS
approved