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.

A023612 Convolution of Fibonacci numbers and A001950.

Original entry on oeis.org

2, 7, 16, 33, 62, 110, 190, 320, 533, 879, 1440, 2350, 3824, 6210, 10073, 16324, 26441, 42812, 69302, 112166, 181522, 293745, 475327, 769134, 1244526, 2013728, 3258324, 5272125, 8530524
Offset: 0

Views

Author

Keywords

Programs

  • Mathematica
    Module[{nn=30,gr,fib},gr=Array[Floor[#*GoldenRatio^2]&,nn];fib= Fibonacci[ Range[nn]];Table[ListConvolve[Take[gr,n],Take[fib,n]],{n,nn}]]//Flatten (* Harvey P. Dale, Feb 04 2019 *)