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!)
A327275 a(1) = 1; a(n) = Sum_{d|n, d<n} psi(n/d) * a(d), where psi = A001615. 0
1, 3, 4, 15, 6, 36, 8, 75, 28, 54, 12, 252, 14, 72, 72, 375, 18, 348, 20, 378, 96, 108, 24, 1620, 66, 126, 196, 504, 30, 936, 32, 1875, 144, 162, 144, 3108, 38, 180, 168, 2430, 42, 1248, 44, 756, 696, 216, 48, 9900, 120, 810, 216, 882, 54, 3108, 216, 3240, 240, 270, 60, 8568 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
G.f. A(x) satisfies: A(x) = x + Sum_{k>=2} psi(k) * A(x^k).
a(p) = p + 1, where p is prime.
MATHEMATICA
a[n_] := If[n == 1, n, Sum[If[d < n, DirichletConvolve[j, MoebiusMu[j]^2, j, n/d] a[d], 0], {d, Divisors[n]}]]; Table[a[n], {n, 1, 60}]
nmax = 60; A[_] = 0; Do[A[x_] = x + Sum[DirichletConvolve[j, MoebiusMu[j]^2, j, k] A[x^k], {k, 2, nmax}] + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x] // Rest
CROSSREFS
Sequence in context: A130409 A365349 A258468 * A343939 A157351 A071167
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Sep 15 2019
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 25 07:07 EDT 2024. Contains 371964 sequences. (Running on oeis4.)