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.

A073782 a(n) = Sum_{k=0..n} S(k)*S(n-k), convolution of S=A001644 with itself.

Original entry on oeis.org

9, 6, 19, 48, 89, 190, 391, 784, 1577, 3142, 6219, 12256, 24041, 46974, 91471, 177568, 343753, 663814, 1278979, 2459152, 4719417, 9041470, 17294039, 33030320, 62999145, 120006214, 228327099, 433939904, 823854793, 1562602238
Offset: 0

Views

Author

Mario Catalani (mario.catalani(AT)unito.it), Aug 11 2002

Keywords

Crossrefs

Cf. A001644.

Programs

  • Magma
    R:=PowerSeriesRing(Integers(), 30); Coefficients(R!( (3-2*x-x^2)^2/(1-x-x^2-x^3)^2 )); // G. C. Greubel, Apr 12 2019
    
  • Mathematica
    CoefficientList[Series[(3-2x-x^2)^2/(1-x-x^2-x^3)^2, {x, 0, 30}], x]
  • PARI
    my(x='x+O('x^30)); Vec((3-2*x-x^2)^2/(1-x-x^2-x^3)^2) \\ G. C. Greubel, Apr 12 2019
    
  • Sage
    ((3-2*x-x^2)^2/(1-x-x^2-x^3)^2).series(x, 30).coefficients(x, sparse=False) # G. C. Greubel, Apr 12 2019

Formula

G.f.: (3-2*x-x^2)^2/(1-x-x^2-x^3)^2.