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!)
A061860 Variant of A061417. 2

%I #12 Dec 13 2017 00:17:08

%S 1,2,4,11,28,152,726,5268,40438,365944,3628810,39974466,479001612,

%T 6228256404,87178339984,1307706805928,20922789888016,355688409760972,

%U 6402373705728018,121645133931170028,2432902008232456692

%N Variant of A061417.

%C Does this count some variety of necklaces?

%H G. C. Greubel, <a href="/A061860/b061860.txt">Table of n, a(n) for n = 0..445</a>

%F a(n) = (1/n)*Sum_{d|n} phi(n/d)*C(n, d)*(d!).

%p [seq(A061860(j),j=1..40)]; with(numtheory); A061860 := proc(n) local d,s; s := 0; for d in divisors(n) do s := s + phi(n/d)*(binomial(n,d))*(d!); od; RETURN(s/n); end;

%t a[n_] := DivisorSum[n, EulerPhi[n/#] Binomial[n, #] (#!)&]/n; Array[a, 25] (* _Jean-François Alcover_, Mar 06 2016 *)

%Y A061860[p] = A061417[p] = (p-1)!+(p-1) for all prime p's.

%K nonn

%O 0,2

%A _Antti Karttunen_, May 11 2001

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 13:38 EDT 2024. Contains 371970 sequences. (Running on oeis4.)