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!)
A221907 a(n) = 5^n + 5*n. 2
1, 10, 35, 140, 645, 3150, 15655, 78160, 390665, 1953170, 9765675, 48828180, 244140685, 1220703190, 6103515695, 30517578200, 152587890705, 762939453210, 3814697265715, 19073486328220, 95367431640725, 476837158203230 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
G.f.: (1+3*x-24*x^2)/((1-x)^2*(1-5*x)).
a(n) = 7*a(n-1) - 11*a(n-2) + 5*a(n-3).
a(n) = A176916(n) - 1.
a(n) = 5*A362555(n) for n > 0. - Hugo Pfoertner, Mar 01 2024
MATHEMATICA
Table[(5^n + 5 n), {n, 0, 30}] (* or *) CoefficientList[Series[(1 + 3 x - 24 x^2)/((1 - x)^2 (1 - 5 x)), {x, 0, 30}], x]
LinearRecurrence[{7, -11, 5}, {1, 10, 35}, 30] (* Harvey P. Dale, Jul 23 2013 *)
PROG
(Magma) [5^n + 5*n: n in [0..30]]; /* or */ I:=[1, 10, 35]; [n le 3 select I[n] else 7*Self(n-1)-11*Self(n-2)+5*Self(n-3): n in [1..30]];
(PARI) a(n)=5^n+5*n \\ Charles R Greathouse IV, Apr 18 2013
CROSSREFS
Sequence in context: A048507 A240267 A359317 * A195269 A070755 A126995
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Mar 02 2013
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 25 13:38 EDT 2024. Contains 371970 sequences. (Running on oeis4.)