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.

A212272 a(n) = Fibonacci(n) + n^3.

Original entry on oeis.org

0, 2, 9, 29, 67, 130, 224, 356, 533, 763, 1055, 1420, 1872, 2430, 3121, 3985, 5083, 6510, 8416, 11040, 14765, 20207, 28359, 40824, 60192, 90650, 138969, 216101, 339763, 538618, 859040, 1376060, 2211077, 3560515, 5742191, 9270340, 14977008, 24208470, 39143041
Offset: 0

Views

Author

Bruno Berselli, May 09 2012

Keywords

Crossrefs

Programs

  • Magma
    [Fibonacci(n)+n^3: n in [0..38]];
  • Mathematica
    Table[Fibonacci[n] + n^3, {n, 0, 38}]
  • PARI
    for(n=0, 38, print1(fibonacci(n)+n^3", "));
    

Formula

G.f.: x*(2-x+2*x^2-9*x^3)/((1-x-x^2)*(1-x)^4).