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.

A207539 Dodecanacci numbers (12th-order Fibonacci sequence): a(n) = a(n-1) +...+ a(n-12) with a(0)=...=a(11)=1.

Original entry on oeis.org

1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 12, 23, 45, 89, 177, 353, 705, 1409, 2817, 5633, 11265, 22529, 45057, 90102, 180181, 360317, 720545, 1440913, 2881473, 5762241, 11523073, 23043329, 46081025, 92150785, 184279041, 368513025, 736935948, 1473691715
Offset: 0

Views

Author

Michael Burkhart, Feb 18 2012

Keywords

Crossrefs

Programs

  • Maple
    f12:=proc(n) option remember: if n<=12 then 1: else add(f12(n-i),i=1..12): fi: end:
  • Mathematica
    LinearRecurrence[Table[1, {12}], Table[1, {12}], 100]
  • PARI
    x='x+O('x^50); Vec((1-x-x^2-x^3-x^4-x^5-x^6-x^7-x^8-x^9-x^10-x^11 +10*x^12)/(1-2*x+x^13)) \\ G. C. Greubel, Jul 28 2017

Formula

G.f.: (1-x-x^2-x^3-x^4-x^5-x^6-x^7-x^8-x^9-x^10-x^11 +10*x^12)/(1 -2*x +x^13).