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.

A340822 a(n) = exp(-1) * Sum_{k>=0} (k*(k + n))^n / k!.

This page as a plain text file.
%I A340822 #5 Jan 22 2021 22:38:27
%S A340822 1,3,43,1211,54812,3572775,313493737,35368945463,4962511954307,
%T A340822 844198388785291,170675800745636572,40352181663578992883,
%U A340822 11008690527354504977193,3426969405868832970281647,1205708016597226199323015459,475502109963529414669658708847
%N A340822 a(n) = exp(-1) * Sum_{k>=0} (k*(k + n))^n / k!.
%F A340822 a(n) = Sum_{k=0..n} binomial(n,k) * Bell(2*n-k) * n^k.
%t A340822 Table[Exp[-1] Sum[(k (k + n))^n/k!, {k, 0, Infinity}], {n, 0, 15}]
%t A340822 Join[{1}, Table[Sum[Binomial[n, k] BellB[2 n - k] n^k, {k, 0, n}], {n, 1, 15}]]
%Y A340822 Cf. A000110, A020557, A094577, A134980, A334242, A340823.
%K A340822 nonn
%O A340822 0,2
%A A340822 _Ilya Gutkovskiy_, Jan 22 2021