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!)
A341639 a(1) = 1; a(n+1) = Sum_{d|n} phi(d) * a(d) * a(n/d). 0
1, 1, 2, 6, 19, 95, 291, 2037, 10203, 71429, 357240, 3929640, 19648533, 255430929, 1788018540, 16092167088, 144829514049, 2462101738833, 17234712244012, 327459532636228, 2947135794083881, 38312765323095109, 421440418557975839, 9693129626833444297, 87238166641520673597 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
FORMULA
a(1) = 1; a(n+1) = Sum_{k=1..n} a(gcd(n,k)) * a(n/gcd(n,k)).
MATHEMATICA
a[1] = 1; a[n_] := a[n] = Sum[EulerPhi[d] a[d] a[(n - 1)/d], {d, Divisors[n - 1]}]; Table[a[n], {n, 25}]
a[1] = 1; a[n_] := a[n] = Sum[a[GCD[n - 1, k]] a[(n - 1)/GCD[n - 1, k]], {k, n - 1}]; Table[a[n], {n, 25}]
CROSSREFS
Sequence in context: A291106 A363960 A079453 * A186770 A332406 A127942
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Feb 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 5 12:17 EDT 2024. Contains 374950 sequences. (Running on oeis4.)