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”).

A168278
(10*n + 5*(-1)^n + 3)/4.
3
2, 7, 7, 12, 12, 17, 17, 22, 22, 27, 27, 32, 32, 37, 37, 42, 42, 47, 47, 52, 52, 57, 57, 62, 62, 67, 67, 72, 72, 77, 77, 82, 82, 87, 87, 92, 92, 97, 97, 102, 102, 107, 107, 112, 112, 117, 117, 122, 122, 127, 127, 132, 132, 137, 137, 142, 142, 147, 147, 152, 152, 157
OFFSET
1,1
FORMULA
G.f.: x*(2 + 5*x - 2*x^2)/( (1+x)*(x-1)^2 ). - R. J. Mathar, Jan 05 2011
a(n) = A016873(floor(n/2)). - R. J. Mathar, Jan 05 2011
a(n) = A168282(n) + 1. - Bruno Berselli, Sep 16 2013
E.g.f.: (1/4)*(5 - 8*exp(x) + (3 + 10*x)*exp(2*x))*exp(-x). - G. C. Greubel, Jul 16 2016
MATHEMATICA
Table[5 n/2 + 3/4 + 5 (-1)^n/4, {n, 70}] (* Bruno Berselli, Sep 16 2013 *)
CoefficientList[Series[- (- 2 - 5 x + 2 x^2) / ((1 + x) (x - 1)^2), {x, 0, 70}], x] (* Vincenzo Librandi, Sep 16 2013 *)
PROG
(Magma) [5*n/2+3/4+5*(-1)^n/4: n in [1..70]]; // Vincenzo Librandi, Sep 16 2013
CROSSREFS
Sequence in context: A114532 A003061 A087385 * A267499 A351583 A090521
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Nov 22 2009
EXTENSIONS
New definition by R. J. Mathar, Jan 05 2011
STATUS
approved