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!)
A342628 a(n) = Sum_{d|n} d^(n-d). 15
1, 2, 2, 6, 2, 45, 2, 322, 731, 3383, 2, 132901, 2, 827641, 10297068, 33570818, 2, 2578617270, 2, 44812807567, 678610493340, 285312719189, 2, 393061010002613, 95367431640627, 302875123369471, 150094917726535604, 569939345952661545, 2, 105474306078445349841, 2 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
G.f.: Sum_{k>=1} x^k/(1 - (k * x)^k).
If p is prime, a(p) = 2.
MATHEMATICA
a[n_] := DivisorSum[n, #^(n - #) &]; Array[a, 30] (* Amiram Eldar, Mar 17 2021 *)
PROG
(PARI) a(n) = sumdiv(n, d, d^(n-d));
(PARI) my(N=40, x='x+O('x^N)); Vec(sum(k=1, N, x^k/(1-(k*x)^k)))
(Python)
from sympy import divisors
def A342628(n): return sum(d**(n-d) for d in divisors(n, generator=True)) # Chai Wah Wu, Jun 19 2022
CROSSREFS
Sequence in context: A293216 A319708 A230266 * A329380 A348146 A355076
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Mar 16 2021
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 August 14 15:36 EDT 2024. Contains 375165 sequences. (Running on oeis4.)