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!)
A081875 a(n) = Sum_{d|n} phi(n/d)*C(2*d,d)/2. 0
1, 4, 12, 40, 130, 480, 1722, 6480, 24336, 92520, 352726, 1352640, 5200312, 20060040, 77559060, 300546720, 1166803126, 4537592928, 17672631918, 68923357200, 269128940724, 1052049834616, 4116715363822, 16123803207552 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
V. A. Liskovets, Enumerative formulas for unrooted planar maps: a pattern, Electron. J. Combin., 11:1 (2004), R88.
J. Malenfant, On the Matrix-Element Expansion of a Circulant Determinant, arXiv preprint arXiv:1502.06012 [math.NT], 2015.
FORMULA
Dirichlet convolution of A000010 and A088218. - R. J. Mathar, Mar 11 2017
a(n) ~ 2^(2*n-1) / sqrt(Pi*n). - Vaclav Kotesovec, Jun 08 2019
From Richard L. Ollerton, May 07 2021: (Start)
a(n) = Sum_{k=1..n} C(2*gcd(n,k),gcd(n,k))/2.
a(n) = Sum_{k=1..n} A088218(gcd(n,k)). (End)
EXAMPLE
G.f. = x + 4*x^2 + 12*x^3 + 40*x^4 + 130*x^5 + 480*x^6 + 1722*x^7 + ...
MATHEMATICA
Table[Fold[ #1+EulerPhi[n/#2]*Binomial[2#2, #2]/2&, 0, Divisors[n]], {n, 1, 32}]
a[ n_] := If[ n < 0, 0, Sum[ Binomial[2 d, d] EulerPhi[n / d], {d, Divisors @ n}] / 2]; (* Michael Somos, Nov 01 2014 *)
PROG
(PARI) {a(n) = if( n<1, 0, sumdiv(n, d, binomial(2*d, d) * eulerphi(n/d)) / 2)}; /* Michael Somos, Nov 01 2014 */
CROSSREFS
Cf. A045630.
Sequence in context: A087206 A275863 A289653 * A102433 A221652 A259806
KEYWORD
easy,nonn
AUTHOR
Wouter Meeussen, Apr 12 2003
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:53 EDT 2024. Contains 371906 sequences. (Running on oeis4.)