login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A316073
a(n) is the n-th term of the inverse Weigh transform of j-> n^(j-1).
2
1, 2, 6, 46, 420, 5185, 77658, 1376768, 28133616, 651325653, 16846515510, 481472773386, 15067838554860, 512473605894549, 18821719654854998, 742395982483047976, 31299550394528466960, 1404629090183809673484, 66851805805525048040334, 3363381327122907537090234
OFFSET
1,2
LINKS
FORMULA
a(n) ~ (1 - exp(-1)) * n^(n-1). - Vaclav Kotesovec, Oct 08 2019
MAPLE
b:= proc(n, i, k) option remember; `if`(n=0, 1, `if`(i<1, 0,
add(binomial(g(i, k), j)*b(n-i*j, i-1, k), j=0..n/i)))
end:
g:= proc(n, k) option remember; k^(n-1)-b(n, n-1, k) end:
a:= n-> g(n$2):
seq(a(n), n=1..21);
MATHEMATICA
b[n_, i_, k_] := b[n, i, k] = If[n == 0, 1, If[i < 1, 0,
Sum[Binomial[g[i, k], j] b[n - i j, i - 1, k], {j, 0, n/i}]]];
g[n_, k_] := g[n, k] = k^(n - 1) - b[n, n - 1, k];
a[n_] := g[n, n];
Array[a, 21] (* Jean-François Alcover, Dec 29 2020, after Alois P. Heinz *)
CROSSREFS
Cf. A306173.
Sequence in context: A371341 A052811 A078603 * A001587 A306784 A078537
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Jun 23 2018
STATUS
approved