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.

A049874 a(n)=b(n)-b(n-1), where b=A049862 (differences of products of Fibonacci numbers.)

Original entry on oeis.org

1, 1, 1, 2, 1, 2, 2, 3, 2, 1, 5, 3, 2, 8, 5, 1, 2, 13, 8, 2, 3, 21, 13, 2, 1, 5, 34, 21, 3, 2, 8, 55, 34, 5, 1, 2, 13, 89, 55, 8, 2, 3, 21, 144, 89, 13, 2, 1, 5, 34, 233, 144, 21, 3, 2, 8, 55, 377, 233, 34, 5, 1, 2, 13, 89, 610, 377, 55, 8, 2, 3, 21, 144, 987, 610, 89, 13, 2, 1
Offset: 1

Views

Author

Keywords

Crossrefs

Cf. A049862.

Programs

  • PARI
    lista(nn) = {my(out = List([0])); for (i=0, nn, for (j=i+1, nn, listput(out, fibonacci(i)*fibonacci(j)););); my(v = Vec(vecsort(select(x->(x < fibonacci(nn+1)), out), , 8))); vector(#v-1, k, v[k+1] - v[k]);} \\ Michel Marcus, May 27 2019

Extensions

More terms from Michel Marcus, May 27 2019