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!)
A206763 G.f.: Product_{n>=1} [ (1 - (-x)^n) / (1 - (n-1)^n*x^n) ]^(1/n). 2

%I #11 Feb 12 2018 21:06:01

%S 1,1,0,3,23,225,2824,42670,762286,15647321,363901749,9443387329,

%T 270721307582,8493470965716,289518611494068,10653599202688527,

%U 420933469388468297,17773313165985120798,798686060913371460133,38058408270727983373232

%N G.f.: Product_{n>=1} [ (1 - (-x)^n) / (1 - (n-1)^n*x^n) ]^(1/n).

%C Here sigma(n,k) equals the sum of the k-th powers of the divisors of n.

%F G.f.: exp( Sum_{n>=1} x^n/n * Sum_{k=1..n} binomial(n,k) * sigma(n,k) * (-1)^(n-k) ).

%F Logarithmic derivative yields A206764.

%e G.f.: A(x) = 1 + x + 3*x^3 + 23*x^4 + 225*x^5 + 2824*x^6 + 42670*x^7 +...

%e where the g.f. equals the product:

%e A(x) = (1+x)/(1-0*x) * ((1-x^2)/(1-1^2*x^2))^(1/2) * ((1+x^3)/(1-2^3*x^3))^(1/3) * ((1-x^4)/(1-3^4*x^4))^(1/4) * ((1+x^5)/(1-4^5*x^5))^(1/5) *...

%e The logarithm equals the l.g.f. of A206764:

%e log(A(x)) = x - x^2/2 + 10*x^3/3 + 79*x^4/4 + 1026*x^5/5 + 15686*x^6/6 +...

%o (PARI) {a(n)=polcoeff(prod(k=1, n, ((1-(-1)^k*x^k)/(1-(k-1)^k*x^k +x*O(x^n)))^(1/k)), n)}

%o (PARI) {a(n)=polcoeff(exp(sum(m=1, n+1, x^m/m*sum(k=1, m, binomial(m, k)*sigma(m, k)*(-1)^(m-k))+x*O(x^n))), n)}

%o for(n=0,31,print1(a(n),", "))

%Y Cf. A206764 (log), A205814, A205811.

%K nonn

%O 0,4

%A _Paul D. Hanna_, Feb 12 2012

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