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

A131055
1 followed by repeats of 2*k.
5
1, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 42, 44, 44, 46, 46, 48, 48, 50, 50, 52, 52, 54, 54, 56, 56, 58, 58, 60, 60, 62, 62, 64, 64, 66, 66, 68, 68, 70, 70, 72
OFFSET
1,2
FORMULA
Inverse binomial transform of A131056: (1, 3, 7, 17, 41, 97, 225, ...).
From Colin Barker, Oct 28 2012: (Start)
a(n) = ((-1)^n + 2*n-1)/2 for n > 1.
a(n) = a(n-1) + a(n-2) - a(n-3) for n > 1.
G.f.: x*(x^3-x^2+x+1)/((x-1)^2*(x+1)). (End)
E.g.f.: x*(exp(x) + 1) - sinh(x). - Stefano Spezia, Jan 28 2024
MAPLE
seq(`if`(n=1, 1, n-(n mod 2)), n=1..72);
MATHEMATICA
Join[{1}, Table[2*Floor[i/2], {i, 2, 81}]] (* Stefan Steinerberger, Jun 13 2007 *)
With[{c=2*Range[40]}, Join[{1}, Riffle[c, c]]] (* Harvey P. Dale, Jul 25 2019 *)
CROSSREFS
Cf. A131056.
Sequence in context: A352434 A161764 A293706 * A052928 A346663 A137501
KEYWORD
nonn,easy
AUTHOR
Gary W. Adamson, Jun 12 2007
EXTENSIONS
More terms from Stefan Steinerberger, Jun 13 2007
STATUS
approved