login

Revision History forA008759

(Bold, blue-underlined text is anaddition; faded, red-underlined text is adeletion.)

Showing entries 1-10 |older changes
Expansion of (1+x^16)/(1-x)/(1-x^2)/(1-x^3).
(history; published version)
#13byCharles R Greathouse IVat Thu Sep 08 08:44:36 EDT 2022
PROG

(MAGMAMagma) R<x>:=PowerSeriesRing(Integers(), 60); Coefficients(R!( (1+x^16)/((1-x)*(1-x^2)*(1-x^3)) )); //G. C. Greubel,Aug 09 2019

Discussion
Thu Sep 08
08:44
OEIS Server:https://oeis.org/edit/global/2944
#12bySusanna Cuylerat Fri Aug 09 22:11:54 EDT 2019
STATUS

proposed

approved

#11byG. C. Greubelat Fri Aug 09 17:37:35 EDT 2019
STATUS

editing

proposed

#10byG. C. Greubelat Fri Aug 09 17:30:21 EDT 2019
LINKS

G. C. Greubel, <a href= "/A008759/b008759.txt ">Table of n, a(n) for n = 0..1000</a>

<a href= "/index/Rec#order_06" >Index entries for linear recurrences with constant coefficients</a>, signature (1,1,0,-1,-1,1).

MAPLE

seq(coeff(series((1+x^16)/((1-x)*(1-x^2)*(1-x^3)), x, n+1), x, n), n = 1.. 60); #G. C. Greubel,Aug 09 2019

MATHEMATICA

Join[{1, 1, 2, 3, 4, 5, 7, 8, 10, 12, 14}, LinearRecurrence[{1, 1, 0, -1, -1, 1}, {16, 19, 21, 24, 27, 31}, 48]] (*G. C. Greubel,Aug 09 2019 *)

PROG

(PARI) my(x='x+O('x^60)); Vec((1+x^16)/((1-x)*(1-x^2)*(1-x^3))) \\G. C. Greubel,Aug 09 2019

(MAGMA) R<x>:=PowerSeriesRing(Integers(), 60); Coefficients(R!( (1+x^16)/((1-x)*(1-x^2)*(1-x^3)) )); //G. C. Greubel,Aug 09 2019

(Sage)

defA008759_list(prec):

P.<x> = PowerSeriesRing(ZZ, prec)

return P( (1+x^16)/((1-x)*(1-x^2)*(1-x^3)) ).list()

A008759_list(60) #G. C. Greubel,Aug 09 2019

(GAP) a:=[16, 19, 21, 24, 27, 31];; for n in [7..60] do a[n]:=a[n-1]+a[n-2]-a[n-4] -a[n-5]+a[n-6]; od; Concatenation([1, 1, 2, 3, 4, 5, 7, 8, 10, 12, 14], a); #G. C. Greubel,Aug 09 2019

AUTHOR
STATUS

approved

editing

#9byRay Chandlerat Thu Dec 08 10:38:38 EST 2016
STATUS

editing

approved

#8byRay Chandlerat Thu Dec 08 10:38:33 EST 2016
LINKS

<a href= "/index/Rec#order_06" >Index entries for linear recurrences with constant coefficients</a>, signature (1, 1, 0, -1, -1, 1).

STATUS

approved

editing

#7byHarvey P. Daleat Mon Sep 19 09:25:22 EDT 2016
STATUS

editing

approved

#6byHarvey P. Daleat Mon Sep 19 09:25:16 EDT 2016
MATHEMATICA

CoefficientList[Series[(1+x^16)/(1-x)/(1-x^2)/(1-x^3), {x, 0, 60}], x] (*Harvey P. Dale,Sep 19 2016 *)

STATUS

approved

editing

#5byRuss Coxat Fri Mar 30 16:45:24 EDT 2012
AUTHOR

_N. J. A. Sloane(njas(AT)research.att.com)_.

Discussion
Fri Mar 30
16:45
OEIS Server:https://oeis.org/edit/global/110
#4byN. J. A. Sloaneat Fri Feb 27 03:00:00 EST 2009
KEYWORD

nonn,new

nonn

AUTHOR

N.J.A.Sloane(njas(AT)research.att.com).