OFFSET
45,3
LINKS
Joerg Arndt and Alois P. Heinz, Table of n, a(n) for n = 45..1000
FORMULA
a(n) ~ c * 2^n, where c = 0.00000000000004863374631933235641619389991611011374568106537836728124272498... . - Vaclav Kotesovec, Sep 07 2014
MAPLE
b:= proc(n, i) option remember; `if`(n=0, 1, series(
add(b(n-j, i+1)*`if`(i=j, x, 1), j=1..n), x, 10))
end:
a:= n-> coeff(b(n, 1), x, 9):
seq(a(n), n=45..80);
MATHEMATICA
b[n_, i_] := b[n, i] = If[n == 0, 1, Series[Sum[b[n - j, i + 1]*If[i == j, x, 1], {j, 1, n}], {x, 0, 10}]]; a[n_] := SeriesCoefficient[b[n, 1], {x, 0, 9}]; Table[a[n], {n, 45, 80}] (* Jean-François Alcover, Nov 06 2014, after Maple *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Joerg Arndt and Alois P. Heinz, Apr 11 2014
STATUS
approved