OFFSET
0,3
COMMENTS
Radius of convergence of g.f. A(x) is near 0.637..., with A(1/phi) = 23.059250143... where phi = (sqrt(5)+1)/2.
Compare the definition of a(n) with the binomial sum:
Fibonacci(n) = 1 + (n-1) + (n-2)*((n-3)/2) + (n-3)*((n-4)/2)*((n-5)/3) + (n-4)*((n-5)/2)*((n-6)/3)*((n-7)/4) +...
with summation extending over the initial [n/2+1] products only.
LINKS
Paul D. Hanna, Table of n, a(n) for n = 0..500
FORMULA
a(n) = 1 + Sum_{k=1..[n/2]} Product_{j=1..k} floor( (n-k-j+1) / j ).
Equals the antidiagonal sums of triangle A207645.
EXAMPLE
a(3) = 1 + 2 = 3;
a(4) = 1 + 3 + 2*[1/2] = 4;
a(5) = 1 + 4 + 3*[2/2] = 8;
a(6) = 1 + 5 + 4*[3/2] + 3*[2/2]*[1/3] = 10;
a(7) = 1 + 6 + 5*[4/2] + 4*[3/2]*[2/3] = 17;
a(8) = 1 + 7 + 6*[5/2] + 5*[4/2]*[3/3] + 4*[3/2]*[2/3]*[1/4] = 30;
a(9) = 1 + 8 + 7*[6/2] + 6*[5/2]*[4/3] + 5*[4/2]*[3/3]*[2/4] = 42; ...
MATHEMATICA
a[n_] := 1 + Sum[ Product[ Floor[ (n-k-j+1)/j ], {j, 1, k}], {k, 1, n/2}]; Table[a[n], {n, 0, 41}] (* Jean-François Alcover, Mar 06 2013 *)
PROG
(PARI) {a(n)=1+sum(k=1, n\2, prod(j=1, k, floor((n-k-j+1)/j)))}
for(n=0, 60, print1(a(n), ", "))
CROSSREFS
KEYWORD
nonn,nice
AUTHOR
Paul D. Hanna, Feb 19 2012
STATUS
approved
