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”).

A288237
Coefficients in the expansion of 1/([r]-[2r]x+[3r]x^2-...); [ ]=floor, r=sqrt(11/4).
3
1, 3, 5, 9, 17, 30, 52, 91, 160, 281, 493, 865, 1518, 2664, 4675, 8204, 14397, 25265, 44337, 77806, 136540, 239611, 420488, 737905, 1294933, 2272449, 3987870, 6998224, 12281027, 21551700, 37820597, 66370521, 116472145, 204394366, 358687108, 629451995
OFFSET
0,2
COMMENTS
Conjecture: the sequence is strictly increasing.
LINKS
FORMULA
G.f.: 1/(Sum_{k>=0} [(k+1)*r)](-x)^k), where r = sqrt(11/4) and [ ] = floor.
MAPLE
N:= 100: # to get a(0)..a(N)
r:= sqrt(11/4):
G:= 1/add(floor((k+1)*r)*(-x)^k, k=0..N):
S:= series(G, x, N+1):
seq(coeff(S, x, j), j=0..N); # Robert Israel, Jul 13 2017
MATHEMATICA
r = Sqrt[11/4];
u = 1000; (* # initial terms from given series *)
v = 100; (* # coefficients in reciprocal series *)
CoefficientList[Series[1/Sum[Floor[r*(k + 1)] (-x)^k, {k, 0, u}], {x, 0, v}], x]
CROSSREFS
Cf. A078140 (includes guide to related sequences).
Sequence in context: A279595 A288235 A288236 * A288234 A288233 A288232
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Jul 11 2017
STATUS
approved