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!)
A218728 a(n) = (25^n-1)/24. 5
0, 1, 26, 651, 16276, 406901, 10172526, 254313151, 6357828776, 158945719401, 3973642985026, 99341074625651, 2483526865641276, 62088171641031901, 1552204291025797526, 38805107275644938151, 970127681891123453776, 24253192047278086344401 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Partial sums of powers of 25 (A009969); q-integers for q=25.
Partial sums are in A014914 Also, the sequence is related to A014943 by A014943 n) = n*a(n)-sum(a(i), i=0..n-1) for n>0. [Bruno Berselli, Nov 07 2012]
LINKS
FORMULA
a(n) = floor(25^n/24).
G.f.: x/((1-x)*(1-25*x)). - Vincenzo Librandi, Nov 07 2012
a(n) = 26*a(n-1) - 25*a(n-2). - Vincenzo Librandi, Nov 07 2012
MATHEMATICA
LinearRecurrence[{26, -25}, {0, 1}, 30] (* Vincenzo Librandi, Nov 07 2012 *)
(25^Range[0, 20]-1)/24 (* Harvey P. Dale, Aug 23 2020 *)
PROG
(PARI) A218728(n)=25^n\24
(Magma) [n le 2 select n-1 else 26*Self(n-1)-25*Self(n-2): n in [1..20]]; // Vincenzo Librandi, Nov 07 2012
(Maxima) A218728(n):=(25^n-1)/24$
makelist(A218728(n), n, 0, 30); /* Martin Ettl, Nov 07 2012 */
CROSSREFS
Sequence in context: A170659 A170707 A170745 * A209963 A158542 A171331
KEYWORD
nonn,easy
AUTHOR
M. F. Hasler, Nov 04 2012
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 07:28 EDT 2024. Contains 372530 sequences. (Running on oeis4.)