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!)
A326824 a(1) = 1; a(n) = Sum_{d|n, d < n} phi(n/d) * d * a(d). 0
1, 1, 2, 4, 4, 12, 6, 24, 18, 32, 10, 124, 12, 60, 72, 240, 16, 336, 18, 440, 132, 140, 22, 2088, 100, 192, 378, 1044, 28, 2096, 30, 4320, 300, 320, 312, 9636, 36, 396, 408, 10384, 40, 5040, 42, 3500, 3000, 572, 46, 61584, 294, 3920, 672, 5544, 52, 23148, 680 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
FORMULA
a(1) = 1; a(n) = Sum_{k=1..n-1} gcd(n, k) * a(gcd(n, k)).
MATHEMATICA
a[1] = 1; a[n_] := Sum[If[d < n, EulerPhi[n/d] d a[d], 0], {d, Divisors[n]}]; Table[a[n], {n, 1, 55}]
a[1] = 1; a[n_] := Sum[GCD[n, k] a[GCD[n, k]], {k, 1, n - 1}]; Table[a[n], {n, 1, 55}]
CROSSREFS
Sequence in context: A186993 A186973 A225232 * A319210 A292303 A000936
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Feb 23 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 September 4 05:14 EDT 2024. Contains 375679 sequences. (Running on oeis4.)