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.

A169691 Let T be the sequence Fibonacci(2n+1), n>=0 (cf. A001519); sequence lists the differences T(j)-T(i) for i

Original entry on oeis.org

1, 3, 4, 8, 11, 12, 21, 29, 32, 33, 55, 76, 84, 87, 88, 144, 199, 220, 228, 231, 232, 377, 521, 576, 597, 605, 608, 609, 987, 1364, 1508, 1563, 1584, 1592, 1595, 1596, 2584, 3571, 3948, 4092, 4147, 4168, 4176, 4179, 4180, 6765, 9349, 10336, 10713, 10857, 10912, 10933
Offset: 1

Views

Author

N. J. A. Sloane, Apr 14 2010

Keywords

Comments

See Comments in A169691.

Crossrefs

Programs

  • Mathematica
    Module[{nn=31,fbs},fbs=Fibonacci[Range[1,nn,2]];Sort[Flatten[Table[ fbs[[n]]- Take[fbs,n-1],{n,nn/2}]]]] (* Harvey P. Dale, Aug 30 2015 *)