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.

A113597 a(n) = F(F(n+1)) - F(F(n)), where F() = Fibonacci numbers.

Original entry on oeis.org

1, 0, 0, 1, 3, 16, 212, 10713, 5691941, 139578159558, 1779979276420851744, 555565404222512714988011077619, 2211236406303914545143847565520581298983941196845, 2746979206949941983182302875626552882765513393050066744028390937621757948751904
Offset: 0

Views

Author

Amarnath Murthy, Nov 07 2005

Keywords

Crossrefs

Cf. A000045. First differences of A007570.

Programs

  • Maple
    F:= n-> (<<0|1>, <1|1>>^n)[1, 2]:
    a:= n-> F(F(n+1)) - F(F(n)):
    seq(a(n), n=0..13);  # Alois P. Heinz, Nov 07 2018
  • PARI
    F=fibonacci; a(n) = F(F(n+1)) - F(F(n)); \\ Michel Marcus, Sep 16 2013

Extensions

Better description from Jonathan Vos Post, Nov 10 2005
Edited by N. J. A. Sloane, Nov 11 2005
a(0)=1 prepended by Alois P. Heinz, Nov 07 2018