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!)
A276658 Tribonacci-like sequence a(n) = a(n-1) + a(n-2) + a(n-3) for n >= 3, with a(0) = 1, a(1) = 2, a(2) = 0. 1
1, 2, 0, 3, 5, 8, 16, 29, 53, 98, 180, 331, 609, 1120, 2060, 3789, 6969, 12818, 23576, 43363, 79757, 146696, 269816, 496269, 912781, 1678866, 3087916, 5679563, 10446345, 19213824, 35339732, 64999901, 119553457, 219893090 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
G.f.: (3 x^2-x-1)/(x^3+x^2+x-1).
a(n) = A275778(n) - A000073(n).
MATHEMATICA
LinearRecurrence[{1, 1, 1}, {1, 2, 0}, 35] (* or *)
RecurrenceTable[{a[n] == a[n - 1] + a[n - 2] + a[n - 3], a[1] == 1, a[2] == 2, a[3] == 0}, a, {n, 35}] (* or *)
CoefficientList[Series[(-1 - x + 3 x^2)/(-1 + x + x^2 + x^3), {x, 0, 40}], x]
PROG
(PARI) a(n)=([0, 1, 0; 0, 0, 1; 1, 1, 1]^n*[1; 2; 0])[1, 1] \\ Charles R Greathouse IV, Sep 13 2016
CROSSREFS
Sequence in context: A094720 A334495 A155800 * A079510 A216255 A362788
KEYWORD
nonn,easy
AUTHOR
Nicolas Bègue, Sep 11 2016
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 23 13:41 EDT 2024. Contains 371914 sequences. (Running on oeis4.)