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.

A097821 Expansion of e.g.f. exp(2x)/(1-5x).

This page as a plain text file.
%I A097821 #17 Dec 20 2022 12:04:30
%S A097821 1,7,74,1118,22376,559432,16783024,587405968,23496238976,
%T A097821 1057330754432,52866537722624,2907659574746368,174459574484786176,
%U A097821 11339872341511109632,793791063905777690624,59534329792933326829568
%N A097821 Expansion of e.g.f. exp(2x)/(1-5x).
%C A097821 Second binomial transform of n!*5^n.
%H A097821 Robert Israel, <a href="/A097821/b097821.txt">Table of n, a(n) for n = 0..353</a>
%F A097821 a(n) = 5*n*a(n-1) + 2^n, n > 0, a(0)=1.
%F A097821 D-finite with recurrence a(n) +(-5*n-2)*a(n-1) +10*(n-1)*a(n-2)=0. - _R. J. Mathar_, Aug 20 2021
%F A097821 a(n) = 5^n * n! * Sum_{k = 0..n} (2/5)^k/k! = 5^n * exp(2/5) * gamma(n + 1, 2/5). - _Gerry Martens_, Nov 07 2022
%p A097821 f:= proc(n) option remember; 5*n*procname(n-1)+2^n end proc:
%p A097821 f(0):= 1:
%p A097821 map(f, [$0..50]); # _Robert Israel_, Nov 10 2022
%o A097821 (PARI) my(x='x + O('x^25)); Vec(serlaplace(exp(2*x)/(1-5*x))) \\ _Michel Marcus_, Nov 08 2022
%Y A097821 Cf. A056545, A000354.
%K A097821 easy,nonn
%O A097821 0,2
%A A097821 _Paul Barry_, Aug 26 2004