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!)
A289260 Coefficients in the expansion of 1/([r]-[2r]x+[3r]x^2-...); [ ]=floor, r=8/5. 3
1, 3, 5, 9, 17, 30, 52, 90, 154, 262, 446, 758, 1286, 2182, 3702, 6278, 10646, 18054, 30614, 51910, 88022, 149254, 253078, 429126, 727638, 1233798, 2092054, 3547334, 6014934, 10199046, 17293718, 29323590, 49721686, 84309126, 142956310, 242399686, 411017942 (list; graph; refs; listen; history; text; internal format)
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 = 8/5 and [ ] = floor.
From Colin Barker, Jul 14 2017: (Start)
G.f.: (1 + x)^2*(1 - x + x^2 - x^3 + x^4) / ((1 - x)*(1 - x - 2*x^3)).
a(n) = 2*a(n-1) - a(n-2) + 2*a(n-3) - 2*a(n-4) for n>3.
(End)
a(n) = abs(A279780(n)). - Alois P. Heinz, Jul 15 2017
MATHEMATICA
r = 8/5;
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]
LinearRecurrence[{2, -1, 2, -2}, {1, 3, 5, 9, 17, 30, 52}, 40] (* Harvey P. Dale, Oct 13 2023 *)
PROG
(PARI) Vec((1 + x)^2*(1 - x + x^2 - x^3 + x^4) / ((1 - x)*(1 - x - 2*x^3)) + O(x^50)) \\ Colin Barker, Jul 20 2017
CROSSREFS
Cf. A078140 (includes guide to related sequences), A289265.
Cf. A279780.
Sequence in context: A077879 A078140 A279780 * A279595 A288235 A288236
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Jul 14 2017
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 19 15:11 EDT 2024. Contains 371794 sequences. (Running on oeis4.)