OFFSET
1,2
COMMENTS
First differences are periodic with period 7.
LINKS
Index entries for linear recurrences with constant coefficients, signature (1, 0, 0, 0, 0, 0, 1, -1).
FORMULA
a(n+1) = 1 + 4*floor(n/7) + [0,1,1,2,2,3,3].
G.f.: x*(1 + x + x^3 + x^5)/((1-x)^2 * (1 + x + x^2 + x^3 + x^4 + x^5 + x^6)).
a(n) = n - floor(3*n/7). - Wesley Ivan Hurt, Sep 29 2017
MATHEMATICA
t = {}; Do[If[Mod[n, 4] == 1, AppendTo[t, n], AppendTo[t, {n, n}]], {n, 50}]; Flatten[t] (* T. D. Noe, May 23 2013 *)
LinearRecurrence[{1, 0, 0, 0, 0, 0, 1, -1}, {1, 2, 2, 3, 3, 4, 4, 5}, 74] (* Ray Chandler, Aug 26 2015 *)
Table[If[Mod[n, 4] == 1, n, {n, n}], {n, 50}] // Flatten (* or *) Drop[ Flatten[ Table[{n, n}, {n, 50}]], {1, -1, 8}] (* Harvey P. Dale, Feb 03 2019 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
José María Grau Ribas, May 19 2013
EXTENSIONS
Corrected, extended, and edited by Ralf Stephan, May 20 2013
STATUS
approved
