login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A168378 a(n) = 3 + 8*floor(n/2). 2
3, 11, 11, 19, 19, 27, 27, 35, 35, 43, 43, 51, 51, 59, 59, 67, 67, 75, 75, 83, 83, 91, 91, 99, 99, 107, 107, 115, 115, 123, 123, 131, 131, 139, 139, 147, 147, 155, 155, 163, 163, 171, 171, 179, 179, 187, 187, 195, 195, 203, 203, 211, 211, 219, 219, 227, 227, 235, 235 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
More generally, the sequences generated by the recursive relation b(n) = h*n - b(n-1) + k, with b(1)=c and h, k, c, prefixed integers, have the closed form b(n) = (2*h*n + (3*h + 2*k - 4*c)*(-1)^n + h + 2*k)/4. Also, if 2*c = h+k, then b(n) = c + h*floor(n/2); if 2*c = 2*h+k, then b(n) = c + h*floor((n-1)/2); if 2*c = k, b(n) = c + h*floor((n+1)/2). - Bruno Berselli, Sep 18 2013
LINKS
FORMULA
a(n) = 8*n - a(n-1) - 2, with n>1, a(1)=3.
G.f.: x*(3 + 8*x - 3*x^2)/((1+x)*(x-1)^2). - Vincenzo Librandi, Sep 18 2013
a(n) = a(n-1) +a(n-2) -a(n-3). - Vincenzo Librandi, Sep 18 2013
a(n) = 4*n + 2*(-1)^n + 1. - Bruno Berselli, Sep 18 2013
a(n) = A168381(n) + 1 = A168398(n) - 1. - Bruno Berselli, Sep 18 2013
E.g.f.: (4*x + 3)*cosh(x) + (4*x - 1)*sinh(x) - 3. - G. C. Greubel, Jul 19 2016
MATHEMATICA
Table[ 3 + 8*floor(n/2), {n, 60}] (* Bruno Berselli, Sep 18 2013 *)
CoefficientList[Series[(3 + 8 x - 3 x^2)/((1 + x) (x - 1)^2), {x, 0, 70}], x] (* Vincenzo Librandi, Sep 18 2013 *)
LinearRecurrence[{1, 1, -1}, {3, 11, 11}, 80] (* Harvey P. Dale, Oct 05 2022 *)
PROG
(Magma) [3+8*Floor(n/2): n in [1..70]]; // Vincenzo Librandi, Sep 18 2013
CROSSREFS
Sequence in context: A303122 A080351 A178709 * A248410 A059200 A232038
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Nov 24 2009
EXTENSIONS
New definition by Vincenzo Librandi, Sep 18 2013
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 18 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)