The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
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 (list; graph; refs; listen; history; text; internal format)
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
Sequence in context: A320616 A009065 A109714 * A011792 A295537 A183145
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Apr 26 2006
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | 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 June 4 22:04 EDT 2024. Contains 373102 sequences. (Running on oeis4.)