The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A008748 Expansion of (1 + x^5) / ((1-x) * (1-x^2) * (1-x^3)) in powers of x. 3
1, 1, 2, 3, 4, 6, 8, 10, 13, 16, 19, 23, 27, 31, 36, 41, 46, 52, 58, 64, 71, 78, 85, 93, 101, 109, 118, 127, 136, 146, 156, 166, 177, 188, 199, 211, 223, 235, 248, 261, 274, 288, 302, 316, 331, 346, 361, 377, 393, 409, 426, 443, 460, 478, 496, 514, 533, 552, 571 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
Clark Kimberling and John E. Brown, Partial Complements and Transposable Dispersions, J. Integer Seqs., Vol. 7, 2004.
FORMULA
a(n) = 1 + floor( n(n+1)/6 ). - Michael Somos, Jun 16 1999
a(n) = 1 + A001840(n-1). - Michael Somos, Jun 16 1999
a(n) = 1 + a(n-1) + a(n-3) - a(n-4) if n>4; a(n) = n if n=1..4. - Michael Somos, Jun 16 1999
a(-1-n) = a(n). - Michael Somos, Sep 06 2013
EXAMPLE
G.f. = 1 + x + 2*x^2 + 3*x^3 + 4*x^4 + 6*x^5 + 8*x^6 + 10*x^7 + 13*x^8 + ...
MAPLE
A061347 := proc(n) op(1+(n mod 3), [-2, 1, 1]) ; end proc:
A008748 := proc(n) 1/6*n^2+1/6*n+8/9+A061347(n+2)/9 ; end proc:
seq(A008748(n), n=0..60) ; # R. J. Mathar, Mar 22 2011
MATHEMATICA
Table[Floor[((n*(n+1)+2)/2+3)/3], {n, 0, 60}] (* Vladimir Joseph Stephan Orlovsky, Apr 26 2010 *)
CoefficientList[Series[(1+x^5)/((1-x)(1-x^2)(1-x^3)), {x, 0, 60}], x] (* Vincenzo Librandi, Jun 11 2013 *)
LinearRecurrence[{2, -1, 1, -2, 1}, {1, 1, 2, 3, 4}, 60] (* Harvey P. Dale, Apr 08 2019 *)
PROG
(PARI) {a(n) = (n^2 + n)\6 + 1} /* Michael Somos, Sep 06 2013 */
(Magma) [1 + Floor(n*(n+1)/6): n in [0..60]]; // G. C. Greubel, Aug 03 2019
(Sage) ((1 + x^5)/((1-x)*(1-x^2)*(1-x^3))).series(x, 30).coefficients(x, sparse=False) # G. C. Greubel, Aug 03 2019
(GAP) List([0..60], n-> 1 + Int(n*(n+1)/6)); # G. C. Greubel, Aug 03 2019
CROSSREFS
Sequence in context: A025695 A025694 A022796 * A089649 A049700 A002984
KEYWORD
nonn,easy
AUTHOR
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 May 21 19:35 EDT 2024. Contains 372738 sequences. (Running on oeis4.)