cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A346394 Expansion of e.g.f. -log(1 - x) * exp(2*x).

This page as a plain text file.
%I A346394 #17 Jul 23 2025 09:07:54
%S A346394 0,1,5,20,78,324,1520,8336,53872,405600,3492416,33798016,362543104,
%T A346394 4264455168,54540715008,753246711808,11168972683264,176937613586432,
%U A346394 2982069587042304,53271637651996672,1005385746384846848,19987620914387812352,417489079682758213632
%N A346394 Expansion of e.g.f. -log(1 - x) * exp(2*x).
%H A346394 Seiichi Manyama, <a href="/A346394/b346394.txt">Table of n, a(n) for n = 0..450</a>
%F A346394 a(n) = n! * Sum_{k=0..n-1} 2^k / ((n-k) * k!).
%F A346394 a(n) = Sum_{k=0..n} binomial(n,k) * A002104(k).
%F A346394 a(n) ~ exp(2) * (n-1)!. - _Vaclav Kotesovec_, Aug 09 2021
%F A346394 a(0) = 0, a(1) = 1, a(n) = (n+1) * a(n-1) - 2 * (n-1) * a(n-2) + 2^(n-1). - _Seiichi Manyama_, May 27 2022
%t A346394 nmax = 22; CoefficientList[Series[-Log[1 - x] Exp[2 x], {x, 0, nmax}], x] Range[0, nmax]!
%t A346394 Table[n! Sum[2^k/((n - k) k!), {k, 0, n - 1}], {n, 0, 22}]
%o A346394 (PARI) a_vector(n) = my(v=vector(n+1, i, if(i==2, 1, 0))); for(i=2, n, v[i+1]=(i+1)*v[i]-2*(i-1)*v[i-1]+2^(i-1)); v; \\ _Seiichi Manyama_, May 27 2022
%Y A346394 Cf. A002104, A010842, A066534, A346395, A346396.
%K A346394 nonn
%O A346394 0,3
%A A346394 _Ilya Gutkovskiy_, Jul 15 2021