The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A036071 Expansion of 1/(1-5*x)^5. 9
1, 25, 375, 4375, 43750, 393750, 3281250, 25781250, 193359375, 1396484375, 9775390625, 66650390625, 444335937500, 2905273437500, 18676757812500, 118286132812500, 739288330078125, 4566192626953125, 27904510498046875 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
With a different offset, number of n-permutations (n=5) of 6 objects u, v, w, z, x, y with repetition allowed, containing exactly four (4)u's. Example: a(1)=25 because we have uuuuv, uuuvu, uuvuu, uvuuu, vuuuu, uuuuw, uuuwu, uuwuu, uwuuu, wuuuu, uuuuz, uuuzu, uuzuu, uzuuu, zuuuu, uuuux, uuuxu, uuxuu, uxuuu, xuuuu uuuuy, uuuyu, uuyuu, uyuuu, yuuuu. - Zerinvary Lajos, Jun 12 2008
LINKS
Index entries for linear recurrences with constant coefficients, signature (25, -250, 1250, -3125, 3125).
FORMULA
a(n) = binomial(n+4, 4)*5^n;
g.f. 1/(1-5*x)^5.
a(n) = 25*a(n-1) - 250*a(n-2) + 1250*a(n-3) - 3125*a(n-4) + 3125*a(n-5), a(0)=1, a(1)=25, a(2)=375, a(3)=4375, a(4)=43750. - Harvey P. Dale, Mar 20 2013
MAPLE
seq(binomial(n+4, 4)*5^n, n=0..18); # Zerinvary Lajos, Jun 12 2008
MATHEMATICA
CoefficientList[Series[1/(1-5x)^5, {x, 0, 30}], x] (* or *) LinearRecurrence[ {25, -250, 1250, -3125, 3125}, {1, 25, 375, 4375, 43750}, 30] (* Harvey P. Dale, Mar 20 2013 *)
PROG
(Sage) [lucas_number2(n, 5, 0)*binomial(n, 4)/5^4 for n in range(4, 23)] # Zerinvary Lajos, Mar 12 2009
CROSSREFS
Sequence in context: A227024 A254376 A022749 * A225968 A094190 A069396
KEYWORD
easy,nonn
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 May 14 13:40 EDT 2024. Contains 372533 sequences. (Running on oeis4.)