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!)
A196154 Binomial transform of A004111. 4
0, 1, 3, 7, 16, 38, 95, 250, 689, 1972, 5809, 17484, 53497, 165845, 519681, 1643112, 5234728, 16785774, 54128870, 175409177, 570906174, 1865364061, 6116175260, 20117351296, 66361157675, 219484396545, 727692105683, 2418048043653, 8051628061939, 26862111773042, 89779489887570, 300568375668272, 1007841476081366 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) ~ c * d^n / n^(3/2), where d = 1 + A246169 = 3.51754035263200389079535459..., c = 0.59875012586719098912050580024... - Vaclav Kotesovec, Oct 30 2017
MAPLE
with(numtheory):
b:= proc(n) option remember; `if`(n<2, n, add(b(n-k)*add(
b(d)*d*(-1)^(k/d+1), d=divisors(k)), k=1..n-1)/(n-1))
end:
a:= n-> add(b(k)*binomial(n, k), k=0..n):
seq(a(n), n=0..50); # Alois P. Heinz, Feb 24 2015
MATHEMATICA
b[n_] := b[n] = If[n<2, n, Sum[b[n-k]*Sum[b[d]*d*(-1)^(k/d+1), {d, Divisors[k]}], {k, 1, n-1}]/(n-1)]; a[n_] := Sum[b[k]*Binomial[n, k], {k, 0, n}]; Table[a[n], {n, 0, 50}] (* Jean-François Alcover, Feb 12 2016, after Alois P. Heinz *)
CROSSREFS
Sequence in context: A293065 A211278 A364625 * A227235 A304937 A152090
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Oct 27 2011
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 April 18 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)