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!)
A345230 a(n) = Sum_{1 <= x_1 <= x_2 <= ... <= x_n <= n} gcd(x_1, x_2, ..., x_n). 2
0, 1, 4, 13, 44, 140, 512, 1782, 6652, 24682, 93599, 354341, 1359470, 5210328, 20098886, 77621774, 300797854, 1167164438, 4539201401, 17674941735, 68933414989, 269143872226, 1052114789548, 4116808923486, 16124224585644, 63205911146740, 247961982954952 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = Sum_{k=1..n} Sum_{d|k} phi(k/d) * binomial(d+n-2, n-1).
a(n) = [x^n] (1/(1 - x)) * Sum_{k >= 1} phi(k) * x^k/(1 - x^k)^n.
a(n) ~ 2^(2*n-1) / sqrt(Pi*n). - Vaclav Kotesovec, Jun 11 2021
MAPLE
a:= n-> coeff(series((1/(1-x))* add(numtheory[phi](k)
*x^k/(1-x^k)^n, k=1..n), x, n+1), x, n):
seq(a(n), n=0..26); # Alois P. Heinz, Jun 11 2021
MATHEMATICA
a[n_] := Sum[DivisorSum[k, EulerPhi[k/#] * Binomial[n + # - 2, n - 1] &], {k, 1, n}]; Array[a, 30, 0] (* Amiram Eldar, Jun 11 2021 *)
PROG
(PARI) a(n) = sum(k=1, n, sumdiv(k, d, eulerphi(k/d)*binomial(d+n-2, n-1)));
CROSSREFS
Main diagonal of A345229.
Sequence in context: A286175 A252831 A219708 * A117882 A257674 A027123
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jun 11 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 April 23 02:14 EDT 2024. Contains 371906 sequences. (Running on oeis4.)