A289120 a(n) is the number of odd integers divisible by 7 in ]2*(n-1)^2, 2*n^2[.
0, 0, 1, 0, 1, 2, 1, 2, 2, 3, 2, 3, 4, 3, 4, 4, 5, 4, 5, 6, 5, 6, 6, 7, 6, 7, 8, 7, 8, 8, 9, 8, 9, 10, 9, 10, 10, 11, 10, 11, 12, 11, 12, 12, 13, 12, 13, 14, 13, 14, 14, 15, 14, 15, 16, 15, 16, 16, 17, 16, 17, 18, 17, 18, 18, 19, 18, 19, 20, 19, 20, 20, 21, 20, 21, 22, 21, 22, 22, 23, 22, 23, 24, 23, 24, 24, 25, 24, 25, 26, 25, 26, 26, 27, 26, 27, 28, 27, 28, 28, 29
Offset: 0
Links
- Colin Barker, Table of n, a(n) for n = 0..1000
- Index entries for linear recurrences with constant coefficients, signature (1,0,0,0,0,0,1,-1).
Programs
-
Mathematica
Table[Count[Mod[Table[2 ((n - 1)^2 + k) - 1, {k, 1, 2 n - 1}], 7], 0], {n, 0, 100}]
-
PARI
concat(vector(2), Vec(x^2*(1 + x)*(1 - x + x^2)^2 / ((1 - x)^2*(1 + x + x^2 + x^3 + x^4 + x^5 + x^6)) + O(x^100))) \\ Colin Barker, Jul 02 2017
Formula
From Colin Barker, Jul 02 2017: (Start)
G.f.: x^2*(1 + x)*(1 - x + x^2)^2 / ((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>7.
(End)
Comments