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.

A367837 Expansion of e.g.f. 1/(2 - x - exp(4*x)).

This page as a plain text file.
%I A367837 #12 Dec 02 2023 08:12:48
%S A367837 1,5,66,1294,33752,1100504,43060176,1965653232,102548623744,
%T A367837 6018735869824,392498702352128,28155539333730560,2203322337542003712,
%U A367837 186790304541786160128,17053569926181643921408,1668166923908523824576512,174057374767036007615922176
%N A367837 Expansion of e.g.f. 1/(2 - x - exp(4*x)).
%F A367837 a(0) = 1; a(n) = n * a(n-1) + Sum_{k=1..n} 4^k * binomial(n,k) * a(n-k).
%o A367837 (PARI) a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=i*v[i]+sum(j=1, i, 4^j*binomial(i, j)*v[i-j+1])); v;
%Y A367837 Cf. A006155, A367835, A367836.
%Y A367837 Cf. A285064, A343674, A355112, A367840.
%K A367837 nonn
%O A367837 0,2
%A A367837 _Seiichi Manyama_, Dec 02 2023