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.

A118348 Semi-diagonal (two rows below central terms) of pendular triangle A118345 and equal to the self-convolution cube of the central terms (A118346).

Original entry on oeis.org

1, 3, 18, 121, 873, 6606, 51728, 415629, 3407391, 28388847, 239675406, 2045980440, 17629939980, 153142537440, 1339599358944, 11789960853293, 104327344928619, 927627432162129, 8283625668834238, 74259685465582569, 668054892245119353
Offset: 0

Views

Author

Paul D. Hanna, Apr 26 2006

Keywords

Crossrefs

Programs

  • Magma
    R:=PowerSeriesRing(Rationals(), 30);
    Coefficients(R!( (Reversion( x*(1-2*x +Sqrt((1-2*x)*(1-6*x)))/(2*(1-2*x)) )/x)^3 )); // G. C. Greubel, Mar 17 2021
  • Mathematica
    CoefficientList[(InverseSeries[Series[x*(1-2*x +Sqrt[(1-2*x)*(1-6*x)])/(2*(1-2*x)), {x, 0, 30}]]/x)^3, x] (* G. C. Greubel, Mar 17 2021 *)
  • PARI
    {a(n) = polcoeff( (serreverse(x*(1-2*x+sqrt((1-2*x)*(1-6*x)+x*O(x^n)))/(2*(1-2*x)))/x)^3, n)}
    
  • Sage
    def A118347_list(prec):
        P. = PowerSeriesRing(ZZ, prec)
        return P( (( x*(1-2*x +sqrt((1-2*x)*(1-6*x)))/(2*(1-2*x)) ).reverse()/x)^3 ).list()
    A118347_list(31) # G. C. Greubel, Mar 17 2021
    

Formula

G.f.: ( series_inverse( x*(1-2*x +sqrt((1-2*x)*(1-6*x)))/(2*(1-2*x)) )/x )^3.