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!)
A016273 Expansion of g.f. 1/((1-2x)(1-3x)(1-5x)). 2
1, 10, 69, 410, 2261, 11970, 61909, 315850, 1598421, 8050130, 40425749, 202656090, 1014866581, 5079099490, 25409813589, 127092049130, 635589254741, 3178333432050, 15892828897429, 79467630222970, 397348609370901, 1986774423719810, 9933966253389269 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
From Hieronymus Fischer, Jun 25 2007: (Start)
a(n) = Sum_{0<=i,j,k,<=n, i+j+k=n} 2^i*3^j*5^k.
a(n) = (2^(n+3) + 5^(n+2) - 3^(n+3))/6. (End)
a(n) = ((5^n - 2^n)/3 - (3^n - 2^n))/2 , n >= 2. - Zerinvary Lajos, Jun 05 2009
From Vincenzo Librandi, Mar 15 2011: (Start)
a(n) = 10*a(n-1) - 31*a(n-2) + 30*a(n-3), n >= 3.
a(n) = 8*a(n-1) - 15*a(n-2) + 2^n, a(0)=1, a(1)=10. (End)
E.g.f.: exp(2*x)*(8 - 27*exp(x) + 25*exp(3*x))/6. - Stefano Spezia, Sep 27 2023
MATHEMATICA
CoefficientList[ Series[ 1/((1 - 2x)(1 - 3x)(1 - 5x)), {x, 0, 20} ], x ]
LinearRecurrence[{10, -31, 30}, {1, 10, 69}, 20] (* Harvey P. Dale, Oct 05 2014 *)
PROG
(Sage) [((5^n - 2^n)/3-(3^n - 2^n))/2 for n in range(2, 22)] # Zerinvary Lajos, Jun 05 2009
(PARI) Vec(1/((1-2*x)*(1-3*x)*(1-5*x))+O(x^99)) \\ Charles R Greathouse IV, Sep 26 2012
CROSSREFS
Column k=3 of A343751.
Sequence in context: A026988 A081280 A038806 * A128737 A320228 A130548
KEYWORD
nonn,easy
AUTHOR
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 19 21:09 EDT 2024. Contains 371798 sequences. (Running on oeis4.)