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.

A283679 G.f.: F(F(F(x))) where F(x) = x/(1-x-x^2) is the g.f. for the Fibonacci numbers.

Original entry on oeis.org

0, 1, 3, 12, 48, 197, 815, 3391, 14153, 59185, 247791, 1038186, 4351706, 18245861, 76514483, 320899470, 1345931153, 5645394769, 23679726926, 99326654214, 416638208001, 1747652017025, 7330817809523, 30750407615699, 128988186902345, 541064919671773, 2269598571509748, 9520261251293028
Offset: 0

Views

Author

Oboifeng Dira, Mar 14 2017

Keywords

Programs

  • Maple
    f:= x-> x/(1-x-x^2):
    a:= n-> coeff(series(f(f(f(x))), x, n+1), x, n):
    seq(a(n), n=0..23);

Extensions

Edited by N. J. A. Sloane, Apr 21 2017