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!)
A355219 a(n) = Sum_{k>=1} (4*k - 2)^n / 2^k. 3

%I #7 Jun 26 2022 04:21:17

%S 1,6,68,1176,27152,783456,27126848,1095801216,50589024512,

%T 2627443262976,151623974601728,9624874873952256,666516443992297472,

%U 50002158357801885696,4039720490206565777408,349685083067909962039296,32287291853754803207340032,3167488677197974581176303616

%N a(n) = Sum_{k>=1} (4*k - 2)^n / 2^k.

%F E.g.f.: exp(2*x) / (2 - exp(4*x)).

%F a(0) = 1; a(n) = 2^n + Sum_{k=1..n} binomial(n,k) * 4^k * a(n-k).

%F a(n) = Sum_{k=0..n} binomial(n,k) * 2^(n+k) * A000670(k).

%F a(n) ~ n! * 2^(2*n - 1/2) / log(2)^(n+1). - _Vaclav Kotesovec_, Jun 24 2022

%t nmax = 17; CoefficientList[Series[Exp[2 x]/(2 - Exp[4 x]), {x, 0, nmax}], x] Range[0, nmax]!

%t a[0] = 1; a[n_] := a[n] = 2^n + Sum[Binomial[n, k] 4^k a[n - k], {k, 1, n}]; Table[a[n], {n, 0, 17}]

%Y Cf. A000629, A000670, A007047, A080253, A285067, A328183, A355218, A355220.

%K nonn

%O 0,2

%A _Ilya Gutkovskiy_, Jun 24 2022

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 August 4 19:39 EDT 2024. Contains 374925 sequences. (Running on oeis4.)