login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A168093
a(n) = number of natural numbers m such that n - 3 <= m <= n + 3.
1
3, 4, 5, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7
OFFSET
0,1
COMMENTS
Generalization: If a(n,k) = number of natural numbers m such that n - k <= m <= n + k (k >= 1) then a(n,k) = a(n-1,k) + 1 = n + k for 0 <= n <= k, a(n,k) = a(n-1,k) = 2k + 1 for n >= k + 1 (see, e.g., A158799).
FORMULA
a(n) = 3 + n for 0 <= n <= 3, a(n) = 7 for n >= 4.
G.f.: (3 - 2*x - x^5)/(1-x)^2. - G. C. Greubel, Jul 11 2016
MATHEMATICA
CoefficientList[Series[(3 - 2*x - x^5)/(1 - x)^2, {x, 0, 25}], x] (* G. C. Greubel, Jul 11 2016 *)
CROSSREFS
Cf. A000027.
Sequence in context: A245689 A182258 A067628 * A095254 A262980 A242374
KEYWORD
nonn,less
AUTHOR
Jaroslav Krizek, Nov 18 2009
STATUS
approved