OFFSET
0,7
COMMENTS
The cyclic pattern (and numerator of the gf) is computed using Euclid's algorithm for GCD.
REFERENCES
N. Dershowitz and E. M. Reingold, Calendrical Calculations, Cambridge University Press, 1997.
R. L. Graham, D. E. Knuth and O. Patashnik, Concrete Mathematics, Addison-Wesley, NY, 1994.
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..5000
Index entries for linear recurrences with constant coefficients, signature (1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1).
FORMULA
a(n) = a(n-1) + a(n-30) - a(n-31).
G.f.: x^3*(1 + x^3 + x^6 + x^8 + x^11 + x^14 + x^17 + x^19 + x^22 + x^25 + x^27)/( (1+x)*(1+x+x^2)*(x^2-x+1)*(x^4+x^3+x^2+x+1)*(x^4-x^3+x^2-x+1)*(x^8 - x^7 + x^5 - x^4 + x^3 - x + 1)*(x^8+x^7-x^5-x^4-x^3+x+1)*(x-1)^2 ). [Corrected by R. J. Mathar, Feb 20 2011]
MAPLE
MATHEMATICA
Table[Floor[11n/30], {n, 0, 100}] (* Wesley Ivan Hurt, Oct 29 2013 *)
PROG
(PARI) a(n)=11*n\30 \\ Charles R Greathouse IV, Sep 02 2015
(Magma) [Floor(11*n/30): n in [0..50]]; // G. C. Greubel, Nov 03 2017
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved