OFFSET
1,5
REFERENCES
Claude Shannon and Warren Weaver, A Mathematical Theory of Communication, University of Illinois Press, Chicago, 1963, pages 37 - 38.
LINKS
G. C. Greubel, Table of n, a(n) for n = 1..1000
Index entries for linear recurrences with constant coefficients, signature (0,1,0,1,0,0,1,1,1,1).
FORMULA
a(n) = a(n-2) +a(n-4) +a(n-7) +a(n-8) +a(n-9) +a(n-10).
MATHEMATICA
Rest@CoefficientList[Series[x/(1-x^2-x^4-x^7-x^8-x^9-x^10), {x, 0, 60}], x] (* or *) LinearRecurrence[{0, 1, 0, 1, 0, 0, 1, 1, 1, 1}, {1, 0, 1, 0, 2, 0, 3, 1, 6, 3}, 60] (* Harvey P. Dale, Mar 05 2016 *)
PROG
(Sage)
def A143351_list(prec):
P.<x> = PowerSeriesRing(ZZ, prec)
return P( x/(1-x^2-x^4-x^7-x^8-x^9-x^10) ).list()
a=A143351_list(61); a[1:] # G. C. Greubel, Feb 08 2021
(Magma)
R<x>:=PowerSeriesRing(Rationals(), 60);
Coefficients(R!( x/(1-x^2-x^4-x^7-x^8-x^9-x^10) )); // G. C. Greubel, Feb 08 2021
CROSSREFS
KEYWORD
nonn
AUTHOR
Roger L. Bagula and Gary W. Adamson, Oct 22 2008
EXTENSIONS
More terms from Harvey P. Dale, Mar 05 2016
Edited by G. C. Greubel, Feb 08 2021
STATUS
approved