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!)
A119243 Eigenvector of triangle A118919, so that a(n) = Sum_{k=0..floor(n/2)} A118919(n,k)*a(k). 3
1, 2, 7, 26, 103, 422, 1768, 7520, 32335, 140174, 611530, 2681516, 11807683, 52177166, 231262945, 1027703054, 4577477065, 20429990450, 91348096963, 409110897122, 1834954888618, 8241277167236, 37059369415102 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Equals the self-convolution of A119244, which is the eigenvector of triangle A119245.
LINKS
FORMULA
G.f. A(x) satisfies: A(x) = A(-x/(1-4*x))/(1-4*x).
Eigenvector: a(n) = Sum_{k=0..floor(n/2)} a(k)*(2*k+1)*binomial(2*n+2,n-2*k)/(n+1) for n>=0, with a(0)=1.
It appears that the g.f. A(x) satisfies A(x^2) = 1/(1 + x)^2*A(x/(1 + x)^2). - Peter Bala, Sep 16 2023
PROG
(PARI) {a(n)=if(n==0, 1, sum(k=0, n\2, a(k)*(2*k+1)*binomial(2*n+2, n-2*k)/(n+1)))}
(PARI) seq(n) = {my(a=vector(n+1)); a[1]=1; for(n=1, n, a[1+n] = sum(k=0, n\2, a[1+k]*(2*k+1)*binomial(2*n+2, n-2*k))/(n+1)); a} \\ Andrew Howroyd, Sep 19 2023
CROSSREFS
Cf. A118919, A119244 (A(x)^(1/2)), A119245.
Sequence in context: A198957 A150537 A363773 * A264224 A150538 A150539
KEYWORD
nonn
AUTHOR
Paul D. Hanna, May 10 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 7 09:25 EDT 2024. Contains 373162 sequences. (Running on oeis4.)