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!)
A339685 a(n) = Sum_{d|n} 5^(d-1). 9
1, 6, 26, 131, 626, 3156, 15626, 78256, 390651, 1953756, 9765626, 48831406, 244140626, 1220718756, 6103516276, 30517656381, 152587890626, 762939846906, 3814697265626, 19073488282006, 95367431656276, 476837167968756, 2384185791015626, 11920929003987656 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
G.f.: Sum_{k>=1} x^k / (1 - 5*x^k).
G.f.: Sum_{k>=1} 5^(k-1) * x^k / (1 - x^k).
a(n) ~ 5^(n-1). - Vaclav Kotesovec, Jun 05 2021
MATHEMATICA
Table[Sum[5^(d - 1), {d, Divisors[n]}], {n, 1, 24}]
nmax = 24; CoefficientList[Series[Sum[x^k/(1 - 5 x^k), {k, 1, nmax}], {x, 0, nmax}], x] // Rest
PROG
(PARI) a(n) = sumdiv(n, d, 5^(d-1)); \\ Michel Marcus, Dec 13 2020
CROSSREFS
Column 5 of A308813.
Sequence in context: A298625 A046233 A140231 * A364744 A144037 A187458
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Dec 12 2020
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 23 11:35 EDT 2024. Contains 371912 sequences. (Running on oeis4.)