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!)
A355082 G.f. A(x) satisfies A(x) = 1 + x * A(4 * x / (1 - x)) / (1 - x). 3
1, 1, 5, 89, 5949, 1546225, 1591006901, 6526287232201, 106972340665773165, 7011394913950382306529, 1838058207026378316690626149, 1927362102757461997768349891040825, 8083963777926072174628168609626454270621 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(0) = 1; a(n) = Sum_{k=0..n-1} 4^k * binomial(n-1,k) * a(k).
PROG
(PARI) a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=sum(j=0, i-1, 4^j*binomial(i-1, j)*v[j+1])); v;
CROSSREFS
Column k=4 of A306245.
Sequence in context: A191512 A015085 A258181 * A067258 A167424 A174591
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jun 18 2022
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 September 1 22:05 EDT 2024. Contains 375597 sequences. (Running on oeis4.)