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.

A022402 Fibonacci sequence beginning 1, 32.

Original entry on oeis.org

1, 32, 33, 65, 98, 163, 261, 424, 685, 1109, 1794, 2903, 4697, 7600, 12297, 19897, 32194, 52091, 84285, 136376, 220661, 357037, 577698, 934735, 1512433, 2447168, 3959601, 6406769, 10366370, 16773139, 27139509, 43912648, 71052157, 114964805, 186016962, 300981767, 486998729
Offset: 0

Views

Author

Keywords

Programs

  • Magma
    [Fibonacci(n+2) + 30*Fibonacci(n): n in [0..40]]; // G. C. Greubel, Mar 01 2018
  • Mathematica
    Table[Fibonacci[n + 2] + 30*Fibonacci[n], {n, 0, 50}] (* G. C. Greubel, Mar 01 2018 *)
    LinearRecurrence[{1,1},{1,32},40] (* Harvey P. Dale, Nov 16 2024 *)
  • PARI
    for(n=0, 40, print1(fibonacci(n+2) + 30*fibonacci(n), ", ")) \\ G. C. Greubel, Mar 01 2018
    

Extensions

Terms a(30) onward added by G. C. Greubel, Mar 01 2018