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.

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

This page as a plain text file.
%I A367885 #11 Dec 04 2023 06:35:33
%S A367885 1,0,4,12,128,1040,12672,161728,2481152,41806080,791613440,
%T A367885 16399944704,371591995392,9110211874816,240670782291968,
%U A367885 6810264853463040,205583847590985728,6593508525460226048,223913466256013918208,8026367531323488993280
%N A367885 Expansion of e.g.f. 1/(1 - x * (exp(2*x) - 1)).
%F A367885 a(0) = 1; a(n) = n * Sum_{k=2..n} 2^(k-1) * binomial(n-1,k-1) * a(n-k).
%F A367885 a(n) = n! * Sum_{k=0..floor(n/2)} 2^(n-k) * k! * Stirling2(n-k,k)/(n-k)!.
%o A367885 (PARI) a(n) = n!*sum(k=0, n\2, 2^(n-k)*k!*stirling(n-k, k, 2)/(n-k)!);
%Y A367885 Cf. A052848, A367886.
%Y A367885 Cf. A337038, A351736.
%K A367885 nonn
%O A367885 0,3
%A A367885 _Seiichi Manyama_, Dec 04 2023