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.

A082030 Expansion of e.g.f. exp(x)/(1-x)^3.

This page as a plain text file.
%I A082030 #54 Feb 16 2025 08:32:48
%S A082030 1,4,19,106,685,5056,42079,390454,4000441,44881660,547457611,
%T A082030 7215589954,102211815589,1548801969976,25000879886935,428332610385166,
%U A082030 7763306399014129,148412806214119924,2984692721713278211
%N A082030 Expansion of e.g.f. exp(x)/(1-x)^3.
%C A082030 Binomial transform of A001710 (when preceded by 0).
%C A082030 From _Peter Bala_, Jul 10 2008: (Start)
%C A082030 a(n) is a difference divisibility sequence, that is, the difference a(n) - a(m) is divisible by n - m for all n and m (provided n is not equal to m). See A000522 for further properties of difference divisibility sequences.
%C A082030 Recurrence relation: a(0) = 1, a(1) = 4, a(n) = (n+3)*a(n-1) - (n-1)*a(n-2) for n >= 2. The sequence b(n) := n!*(n^2+n+1) = A001564(n) satisfies the same recurrence with the initial conditions b(0) = 1, b(1) = 3. This leads to the finite continued fraction expansion a(n)/b(n) = 1/(1-1/(4-1/(5-2/(6-...-(n-1)/(n+3))))).
%C A082030 Lim_{n -> infinity} a(n)/b(n) = e/2 = 1/(1-1/(4-1/(5-2/(6-...-n/((n+4)-...))))).
%C A082030 a(n) = n!*(n^2+n+1)*Sum_{k = 0..n} 1/(k!*(k^4+k^2+1)) since the rhs satisfies the above recurrence with the same initial conditions. Hence e = 2*Sum_{k >= 0} 1/(k!*(k^4+k^2+1)).
%C A082030 For sequences satisfying the more general recurrence a(n) = (n+1+r)*a(n-1) - (n-1)*a(n-2), which yield series acceleration formulas for e/r! that involve the Poisson-Charlier polynomials c_r(-n;-1), refer to A000522 (r = 0), A001339 (r=1), A095000 (r=3) and A095177 (r=4). (End)
%H A082030 Roland Bacher, <a href="https://doi.org/10.37236/2522">Counting Packings of Generic Subsets in Finite Groups</a>, Electr. J. Combinatorics, 19 (2012), #P7. - From _N. J. A. Sloane_, Feb 06 2013
%H A082030 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/Poisson-CharlierPolynomial.html">Poisson-Charlier polynomial</a>
%F A082030 E.g.f.: exp(x)/(1-x)^3.
%F A082030 a(n) = A001340(n)/2.
%F A082030 a(n) = Sum_{k=0..n} A046716(n, k)*3^(n-k). - _Philippe Deléham_, Jun 12 2004
%F A082030 a(n) = Sum_{k=0..n} binomial(n, k)*(k+2)!/2. - _Philippe Deléham_, Jun 19 2004
%F A082030 a(n) = Sum_{k=0..n} binomial(n,k)*(k+1)^(k+1)*(-k)^(n-k). - _Paul D. Hanna_, Sep 30 2011
%F A082030 O.g.f.: Sum_{n>=0} (n+1)^(n+1)*x^n/(1+n*x)^(n+1) = Sum_{n>=0} a(n)*x^n. - _Paul D. Hanna_, Sep 30 2011
%F A082030 Conjecture: a(n) + (-n-3)*a(n-1) + (n-1)*a(n-2) = 0. - _R. J. Mathar_, Dec 03 2012
%F A082030 G.f.: (1-x)/(2*x*Q(0)) - 1/2/x, where Q(k) = 1 - x - x*(k+2)/(1 - x*(k+1)/Q(k+1)); (continued fraction). - _Sergei N. Gladkovskii_, Apr 22 2013
%F A082030 a(n) = hypergeometric([3, -n], [], -1). - _Peter Luschny_, Sep 20 2014
%F A082030 First-order recurrence: P(n-1)*a(n) = n*P(n)*a(n-1) + 1 with a(0) = 1, where P(n) = n^2 + n + 1 = A001564(n). - _Peter Bala_, Jul 26 2021
%F A082030 a(n) = KummerU(-n, -n - 2, 1). - _Peter Luschny_, May 10 2022
%p A082030 a := n -> hypergeom([3, -n], [], -1); seq(simplify(a(n)), n=0..18); # _Peter Luschny_, Sep 20 2014
%p A082030 seq(simplify(KummerU(-n, -n - 2, 1)), n = 0..20); # _Peter Luschny_, May 10 2022
%t A082030 a[n_] := a[n] = If[n == 0, 1, (n (n^2 + n + 1) a[n-1] + 1)/(n^2 - n + 1)];
%t A082030 a /@ Range[0, 18] (* _Jean-François Alcover_, Oct 16 2019 *)
%t A082030 With[{nn=20},CoefficientList[Series[Exp[x]/(1-x)^3,{x,0,nn}],x] Range[0,nn]!] (* _Harvey P. Dale_, Aug 07 2022 *)
%o A082030 (PARI) {a(n)=n!*polcoeff(exp(x+x*O(x^n))/(1-x)^3,n)} /* _Paul D. Hanna_, Sep 30 2011 */
%o A082030 (PARI) {a(n)=sum(k=0,n,binomial(n,k)*(k+2)!/2)} /* _Paul D. Hanna_, Sep 30 2011 */
%o A082030 (PARI) {a(n)=sum(k=0,n,binomial(n,k)*(k+1)^(k+1)*(-k)^(n-k))} /* _Paul D. Hanna_, Sep 30 2011 */
%o A082030 (PARI) {a(n)=polcoeff(sum(m=0,n,(m+1)^(m+1)*x^m/(1+m*x)^(m+1)+x*O(x^n)),n)} /* _Paul D. Hanna_, Sep 30 2011 */
%Y A082030 Cf. A082031, A000522, A001339, A095000, A095177, A096307, A096341, A001564.
%K A082030 easy,nonn
%O A082030 0,2
%A A082030 _Paul Barry_, Apr 02 2003