cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A061225 Numbers of the form k^3 + (k + 1)^4 + (k + 2)^5 + (k + 3)^6.

Original entry on oeis.org

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

Views

Author

Olivier Gérard, May 31 2001

Keywords

Examples

			a(1) = 1 + 2^4 + 3^5 + 4^6 = 1 + 16 + 243 + 4096 = 4356.
		

Crossrefs

Cf. A027621.

Programs

  • Magma
    [ n^3 + (n + 1)^4 + (n + 2)^5 + (n + 3)^6: n in [0..30]]; // Vincenzo Librandi, Aug 05 2011
  • Mathematica
    Table[n^3+(n+1)^4+(n+2)^5+(n+3)^6,{n,0,30}]  (* Harvey P. Dale, Mar 26 2011 *)

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

Extensions

Offset changed from 1 to 0 by Vincenzo Librandi, Aug 05 2011