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.

A030037 a(n+1) = Sum_{k=0..floor(2*n/5)} a(k) * a(n-k).

Original entry on oeis.org

1, 1, 1, 1, 2, 3, 6, 11, 20, 40, 77, 160, 319, 636, 1332, 2721, 5799, 12068, 25109, 53943, 113682, 245931, 523896, 1115239, 2425858, 5208339, 11388934, 24630843, 53194684, 116764483, 253764437, 559289434, 1221970242, 2666776056, 5889628123, 12910470041, 28608337855
Offset: 0

Views

Author

Keywords

Crossrefs

Programs

  • PARI
    lista(nn) = {my(v=vector(nn+2, i, 1)); for(n=2, nn, v[n+2]=sum(k=1, 1+(2*n)\5, v[k]*v[n+2-k])); v; } \\ Jinyuan Wang, Mar 18 2020

Extensions

More terms from Jinyuan Wang, Mar 18 2020