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!)
A339686 a(n) = Sum_{d|n} 6^(d-1). 8
1, 7, 37, 223, 1297, 7819, 46657, 280159, 1679653, 10078999, 60466177, 362805091, 2176782337, 13060740679, 78364165429, 470185264735, 2821109907457, 16926661132171, 101559956668417, 609359750089711, 3656158440109669, 21936950700844039, 131621703842267137 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
G.f.: Sum_{k>=1} x^k / (1 - 6*x^k).
G.f.: Sum_{k>=1} 6^(k-1) * x^k / (1 - x^k).
a(n) ~ 6^(n-1). - Vaclav Kotesovec, Jun 05 2021
MATHEMATICA
Table[Sum[6^(d - 1), {d, Divisors[n]}], {n, 1, 23}]
nmax = 23; CoefficientList[Series[Sum[x^k/(1 - 6 x^k), {k, 1, nmax}], {x, 0, nmax}], x] // Rest
PROG
(PARI) a(n) = sumdiv(n, d, 6^(d-1)); \\ Michel Marcus, Dec 13 2020
CROSSREFS
Column 6 of A308813.
Sequence in context: A046235 A297329 A347726 * A144496 A025012 A039938
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 18 03:01 EDT 2024. Contains 371767 sequences. (Running on oeis4.)