Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.
%I #13 Jan 02 2017 11:07:22
%S 1,-3,4,-4,4,-3,-1,8,-16,24,-30,28,-12,-20,68,-128,184,-208,168,-32,
%T -224,592,-1008,1344,-1408,960,224,-2240,4928,-7744,9664,-9216,4736,
%U 5120,-20608,39936,-58368,67840,-57600,16384,63488,-180224,315904,-431104,463872
%N Coefficients in the expansion of 1/([r] + [2r]x + [3r]x^2 + ...); [ ] = floor, r = 9/5.
%C If n >= 23, then 32 divides a(n).
%H Clark Kimberling, <a href="/A279781/b279781.txt">Table of n, a(n) for n = 0..1000</a>
%H <a href="/index/Rec#order_04">Index entries for linear recurrences with constant coefficients</a>, signature (-2,-2,-2,-2).
%F G.f.: 1/([r] + [2r]x + [3r]x^2 + ...); [ ] = floor, r = 9/5.
%F G.f.: (1 - x) (1 - x^5)/(1 + 2 x + 2 x^2 + 2 x^3 + 2 x^4).
%t z = 50; f[x_] := f[x] = Sum[Floor[(9/5)*(k + 1)] x^k, {k, 0, z}]; f[x]
%t CoefficientList[Series[1/f[x], {x, 0, z}], x]
%Y Cf. A279634, A279778, A279779, A279780.
%K sign,easy
%O 0,2
%A _Clark Kimberling_, Dec 18 2016