login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A064751
a(n) = n*5^n - 1.
7
4, 49, 374, 2499, 15624, 93749, 546874, 3124999, 17578124, 97656249, 537109374, 2929687499, 15869140624, 85449218749, 457763671874, 2441406249999, 12969970703124, 68664550781249, 362396240234374, 1907348632812499, 10013580322265624, 52452087402343749
OFFSET
1,1
FORMULA
G.f.: x*(4 + 5*x - 25*x^2)/((1 - 5*x)^2*(1 - x)). - Vincenzo Librandi, Jun 21 2018
a(n) = A036291(n) - 1. - Michel Marcus, Jun 21 2018
MATHEMATICA
Table[n*5^n-1, {n, 20}] (* or *) LinearRecurrence[{11, -35, 25}, {4, 49, 374}, 20] (* Harvey P. Dale, Jun 25 2017 *)
CoefficientList[Series[(4 + 5 x - 25 x^2) / ((1 - 5 x)^2 (1 - x)), {x, 0, 33}], x] (* Vincenzo Librandi, Jun 21 2018 *)
PROG
(PARI) a(n) = { n*5^n - 1 } \\ Harry J. Smith, Sep 24 2009
(Magma) [n*5^n - 1: n in [1..30]]; // Vincenzo Librandi, Jun 21 2018
CROSSREFS
Cf. A036291.
Sequence in context: A113525 A290263 A224538 * A045787 A067474 A053769
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Oct 19 2001
STATUS
approved