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!)
A103142 a(n) = 2*a(n-1) + a(n-2) + a(n-3) + a(n-4), with a(0)=1, a(1)=2, a(3)=5, a(4)=13. 5
1, 2, 5, 13, 34, 88, 228, 591, 1532, 3971, 10293, 26680, 69156, 179256, 464641, 1204374, 3121801, 8091873, 20974562, 54367172, 140922580, 365278767, 946821848, 2454212215, 6361447625, 16489208080, 42740897848, 110786663616, 287164880785, 744346531114 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Row sums of generalized Pascal matrix A103141.
Generalized Pell numbers.
Row sums of the tetranacci convolution triangle A202193. - Philippe Deléham, Feb 16 2014
LINKS
Brian Hopkins and Stéphane Ouvry, Combinatorics of Multicompositions, arXiv:2008.04937 [math.CO], 2020.
FORMULA
a(n) = 2*a(n-1) + a(n-2) + a(n-3) + a(n-4).
G.f.: 1/(1 - 2*x - x^2 - x^3 - x^4).
MAPLE
m:=40; S:=series(1/(1-2*x-x^2-x^3-x^4), x, m+1): seq(coeff(S, x, j), j=0..m); # G. C. Greubel, Feb 12 2020
MATHEMATICA
LinearRecurrence[{2, 1, 1, 1}, {1, 2, 5, 13}, 40] (* Vladimir Joseph Stephan Orlovsky, Jun 20 2011 *)
PROG
(PARI) Vec(1/(1-2*x-x^2-x^3-x^4)+O(x^40)) \\ Charles R Greathouse IV, Jun 20 2011
(Magma) I:=[1, 2, 5, 13]; [n le 4 select I[n] else 2*Self(n-1)+Self(n-2)+Self(n-3) +Self(n-4): n in [1..40]]; // Vincenzo Librandi, Feb 05 2012
(Sage)
def A103142_list(prec):
P.<x> = PowerSeriesRing(ZZ, prec)
return P( 1/(1-2*x-x^2-x^3-x^4) ).list()
A103142_list(40) # G. C. Greubel, Feb 12 2020
(GAP) a:=[1, 2, 5, 13];; for n in [5..40] do a[n]:=2*a[n-1]+a[n-2]+a[n-3]+a[n-4]; od; a; # G. C. Greubel, Feb 12 2020
CROSSREFS
Row sums of A103141 and of A202193.
Sequence in context: A218481 A267905 A209230 * A112844 A027933 A141448
KEYWORD
easy,nonn
AUTHOR
Paul Barry, Jan 24 2005
EXTENSIONS
Deleted certain dangerous or potentially dangerous links. - N. J. A. Sloane, Jan 30 2021
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 May 6 11:54 EDT 2024. Contains 372293 sequences. (Running on oeis4.)