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!)
A279595 Coefficients in the expansion of 1/([r] + [2r]x + [3r]x^2 + ...); [ ] = floor, r = sqrt(e). 1
1, -3, 5, -9, 17, -30, 52, -91, 160, -281, 493, -865, 1518, -2664, 4675, -8204, 14397, -25265, 44337, -77805, 136534, -239592, 420441, -737798, 1294700, -2271961, 3986877, -6996242, 12277127, -21544115, 37805987, -66342603, 116419152, -204294349, 358499270 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
G.f.: 1/([e] + [2e]x + [3e]x^2 + ...); [ ] = floor.
MATHEMATICA
z = 30; r = Sqrt[E];
f[x_] := f[x] = Sum[Floor[r*(k + 1)] x^k, {k, 0, z}]; f[x]
CoefficientList[Series[1/f[x], {x, 0, 2*z}], x]
PROG
(PARI) r = sqrt(exp(1));
Vec(1/sum(k=0, 60, floor(r*(k + 1))*x^k) + O(x^61)) \\ Indranil Ghosh, Mar 30 2017
CROSSREFS
Cf. A279607.
Sequence in context: A078140 A279780 A289260 * A288235 A288236 A288237
KEYWORD
sign,easy
AUTHOR
Clark Kimberling, Dec 16 2016
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 July 3 16:42 EDT 2024. Contains 373982 sequences. (Running on oeis4.)