login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A365863 a(0) = 1; thereafter a(n) = n*Sum_{k = 0..n-1} binomial(n, k)*(-1)^(1+n+k)*a(k). 1
1, 1, 2, 12, 156, 3380, 108930, 4876242, 289111032, 21916777752, 2067208751790, 237380181141950, 32601704893973556, 5276471519805880836, 993835167745129599162, 215520207875112312124890, 53311353846240820033325040, 14919977169758349265112350256, 4690364757880376663319746737926 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Let P_k(x) be the polynomial of order k which satisfies a(m) = P_k(m) for m = 0..k, then a(k+1) = k * P_k(k+1).
This sequence is a member of a family of sequences with related properties. Here are some examples:
With b(k+1) = 1 + P_k(k+1) we get b(k) = A000079(k).
With b(k+1) = 2 + P_k(k+1) we get b(k) = A000225(k).
With b(k+1) = 3 + P_k(k+1) we get b(k) = A033484(k).
With b(k+1) = 2 * P_k(k+1) we get b(k) = A000629(k).
With b(k+1) = 1 + 2 * P_k(k+1) we get b(k) = A007047(k).
With b(k+1) = 3 * P_k(k+1) we get b(k) = A201339(k).
With b(k+1) = 5 * P_k(k+1) we get b(k) = A201365(k).
With b(k+1) = -1 * P_k(k+1) we get b(k) = A000670(k)*(-1)^k.
With b(k+1) = -2 * P_k(k+1) we get b(k) = A004123(k+1)*(-1)^k.
With b(k+1) = -3 * P_k(k+1) we get b(k) = A032033(k)*(-1)^k.
With b(k+1) = -4 * P_k(k+1) we get b(k) = A094417(k)*(-1)^k.
With b(k+1) = -m * P_k(k+1) we get b(k) = Bo(m, k)*(-1)^k, Bo(m, k) are Generalized ordered Bell numbers.
LINKS
FORMULA
a(n) ~ c * n^(2*n + 1/2) / exp(2*n), where c = 2.9711739498821842863440481701659942323709511474486414... - Vaclav Kotesovec, Nov 12 2023
MATHEMATICA
a[n_] := a[n] = If[n == 0, 1, n*Sum[Binomial[n, k]*(-1)^(1 + n + k)*a[k], {k, 0, n - 1}]]; Table[a[n], {n, 0, 20}] (* Vaclav Kotesovec, Nov 12 2023 *)
PROG
(PARI) a(n) = if(n == 0, 1, sum(k = 0, n-1, n*binomial(n, k)*(-1)^(1+n+k)*a(k)))
CROSSREFS
Sequence in context: A053549 A139383 A216351 * A366203 A130529 A075631
KEYWORD
nonn
AUTHOR
Thomas Scheuerle, Nov 09 2023
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 6 16:05 EDT 2024. Contains 372294 sequences. (Running on oeis4.)