login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 


A118348
Semi-diagonal (two rows below central terms) of pendular triangle A118345 and equal to the self-convolution cube of the central terms (A118346).
4
1, 3, 18, 121, 873, 6606, 51728, 415629, 3407391, 28388847, 239675406, 2045980440, 17629939980, 153142537440, 1339599358944, 11789960853293, 104327344928619, 927627432162129, 8283625668834238, 74259685465582569, 668054892245119353
OFFSET
0,2
LINKS
FORMULA
G.f.: ( series_inverse( x*(1-2*x +sqrt((1-2*x)*(1-6*x)))/(2*(1-2*x)) )/x )^3.
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 *)
PROG
(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.<x> = 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
(Magma)
R<x>:=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
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Apr 26 2006
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified September 20 04:19 EDT 2024. Contains 376016 sequences. (Running on oeis4.)