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!)
A332792 a(1) = 1; a(n) = Sum_{d|n, d < n} phi(d) * a(d). 2
1, 1, 1, 2, 1, 4, 1, 6, 3, 6, 1, 16, 1, 8, 7, 30, 1, 30, 1, 34, 9, 12, 1, 104, 5, 14, 21, 60, 1, 96, 1, 270, 13, 18, 11, 278, 1, 20, 15, 330, 1, 174, 1, 136, 81, 24, 1, 1176, 7, 130, 19, 186, 1, 588, 15, 804, 21, 30, 1, 1204, 1, 32, 135, 4590, 17, 402, 1, 310, 25, 348 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
LINKS
FORMULA
a(1) = 1; a(n) = Sum_{k=1..n, gcd(n, k) > 1} a(n/gcd(n, k)).
MATHEMATICA
a[1] = 1; a[n_] := Sum[If[d < n, EulerPhi[d] a[d], 0], {d, Divisors[n]}]; Table[a[n], {n, 1, 70}]
a[1] = 1; a[n_] := a[n] = Sum[If[GCD[n, k] > 1, a[n/GCD[n, k]], 0], {k, 1, n}]; Table[a[n], {n, 1, 70}]
CROSSREFS
Cf. A000010, A006874, A008578 (positions of 1's), A038045, A057660, A332791.
Sequence in context: A271773 A339602 A277127 * A118275 A328612 A243824
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Feb 24 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 July 11 00:26 EDT 2024. Contains 374215 sequences. (Running on oeis4.)