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!)
A119373 A lower diagonal of pendular trinomial triangle A119369. 8
1, 2, 6, 20, 70, 253, 938, 3546, 13617, 52967, 208255, 826315, 3304456, 13304924, 53891402, 219442686, 897772983, 3688451380, 15211545938, 62950542636, 261329456566, 1087985751336, 4541524025769, 19003488710465, 79696345430789 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
G.f.: A(x) = B(x)^2/(1+x - x*B(x)) = B(x)^2*G(x) = B(x)*H(x), where B(x) is g.f. of A119370, G(x) is g.f. of A119371 and H(x) is g.f. of A119372.
G.f.: 8*(1+x)/( ((1+x^2) +sqrt((1+x^2)^2 -4*x*(1+x)))^2*(1+4*x+x^2 +sqrt((1+4*x+x^2)^2 -4*x*(1+x)*(3+2*x))) ).
MATHEMATICA
CoefficientList[Series[8*(1+x)/( ((1+x^2) + Sqrt[(1+x^2)^2 -4*x*(1+x)])^2*(1 + 4*x +x^2 +Sqrt[(1+4*x+x^2)^2 -4*x*(1+x)*(3+2*x)])), {x, 0, 30}], x] (* G. C. Greubel, Mar 16 2021 *)
PROG
(PARI) {a(n)=polcoeff(8*(1+x)/((1+x^2)+sqrt((1+x^2)^2-4*x*(1+x)+x*O(x^n)))^2 /(1+4*x+x^2 + sqrt((1+4*x+x^2)^2 - 4*x*(1+x)*(3+2*x)+x*O(x^n))), n)}
(Sage)
def A119373_list(prec):
P.<x> = PowerSeriesRing(QQ, prec)
return P( 8*(1+x)/( ((1+x^2) +sqrt((1+x^2)^2 -4*x*(1+x)))^2*(1+4*x+x^2 +sqrt((1+4*x+x^2)^2 -4*x*(1+x)*(3+2*x))) ) ).list()
A119373_list(30) # G. C. Greubel, Mar 16 2021
(Magma)
R<x>:=PowerSeriesRing(Rationals(), 30);
Coefficients(R!( 8*(1+x)/( ((1+x^2) +Sqrt((1+x^2)^2 -4*x*(1+x)))^2*(1+4*x+x^2 +Sqrt((1+4*x+x^2)^2 -4*x*(1+x)*(3+2*x))) ) )); // G. C. Greubel, Mar 16 2021
CROSSREFS
Sequence in context: A302646 A000984 A087433 * A360292 A151284 A049138
KEYWORD
nonn
AUTHOR
Paul D. Hanna, May 17 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 April 23 03:30 EDT 2024. Contains 371906 sequences. (Running on oeis4.)