OFFSET
1,2
COMMENTS
Without specifying a(2)=3, a(2) would be 2 and sequence would be A026471. - Robert Israel, Aug 27 2018
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
Wieb Bosma, Rene Bruin, Robbert Fokkink, Jonathan Grube, Anniek Reuijl, and Thian Tromp, Using Walnut to solve problems from the OEIS, arXiv:2503.04122 [math.NT], 2025.
Index entries for linear recurrences with constant coefficients, signature (1,0,0,0,0,0,1,-1).
FORMULA
a(n+7) = a(n) + 33 for n >= 8. - Robert Israel, Aug 27 2018
From Colin Barker, Oct 10 2019: (Start)
G.f.: x*(1 + 2*x + x^2 + x^3 + x^4 + x^5 + 12*x^6 - x^8 + 13*x^10 - 11*x^13 + 13*x^14) / ((1 - x)^2*(1 + x + x^2 + x^3 + x^4 + x^5 + x^6)).
a(n) = a(n-1) + a(n-7) - a(n-8) for n>15.
(End)
MAPLE
1, 3, 4, 5, 6, 7, 19, seq(op([20, 21, 22, 36, 37, 38, 39]+k*[33$7]), k=0..10); # Robert Israel, Aug 30 2018
MATHEMATICA
LinearRecurrence[{1, 0, 0, 0, 0, 0, 1, -1}, {1, 3, 4, 5, 6, 7, 19, 20, 21, 22, 36, 37, 38, 39, 53}, 60] (* Harvey P. Dale, Jan 04 2022 *)
PROG
(PARI) Vec(x*(1 + 2*x + x^2 + x^3 + x^4 + x^5 + 12*x^6 - x^8 + 13*x^10 - 11*x^13 + 13*x^14) / ((1 - x)^2*(1 + x + x^2 + x^3 + x^4 + x^5 + x^6)) + O(x^40)) \\ Colin Barker, Oct 10 2019
CROSSREFS
KEYWORD
nonn,easy,changed
AUTHOR
EXTENSIONS
More terms from Larry Reeves (larryr(AT)acm.org), Sep 25 2000
STATUS
approved