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!)
A153643 Jacobsthal numbers A001045 incremented by 2. 6
2, 3, 3, 5, 7, 13, 23, 45, 87, 173, 343, 685, 1367, 2733, 5463, 10925, 21847, 43693, 87383, 174765, 349527, 699053, 1398103, 2796205, 5592407, 11184813, 22369623, 44739245, 89478487, 178956973, 357913943, 715827885, 1431655767, 2863311533, 5726623063 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
LINKS
FORMULA
a(n) = 2 + A001045(n) = A001045(n) + A007395(n) = 1 + A128209(n).
a(n) - A010684(n) = A078008(n), first differences of A001045. - Paul Curtz, Jan 17 2009
G.f.: (2 - x - 5*x^2)/((1+x)*(1-x)*(1-2*x)). - R. J. Mathar, Jan 23 2009
a(n) = 2*a(n-1) + a(n-2) - 2*a(n-3) for n >= 3. - Andrew Howroyd, Feb 26 2018
MATHEMATICA
LinearRecurrence[{1, 2}, {0, 1}, 40] + 2 (* Harvey P. Dale, May 26 2014 *)
LinearRecurrence[{2, 1, -2}, {2, 3, 3}, 40] (* Georg Fischer, Apr 02 2019 *)
PROG
(PARI) my(x='x+O('x^40)); Vec( (2-x-5*x^2)/((1-x^2)*(1-2*x)) ) \\ G. C. Greubel, Apr 02 2019
(Magma) I:=[2, 3, 3]; [n le 3 select I[n] else 2*Self(n-1) +Self(n-2) -2*Self(n-3): n in [1..40]]; // G. C. Greubel, Apr 02 2019
(Sage) ((2-x-5*x^2)/((1-x^2)*(1-2*x))).series(x, 40).coefficients(x, sparse=False) # G. C. Greubel, Apr 02 2019
(GAP) a:=[2, 3, 3];; for n in [4..40] do a[n]:=2*a[n-1]+a[n-2]-2*a[n-3]; od; a; # G. C. Greubel, Apr 02 2019
CROSSREFS
Sequence in context: A035066 A258967 A035068 * A053218 A198335 A339050
KEYWORD
nonn,easy
AUTHOR
Paul Curtz, Dec 30 2008
EXTENSIONS
Edited and extended by R. J. Mathar, Jan 23 2009
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 16 04:02 EDT 2024. Contains 371696 sequences. (Running on oeis4.)