cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A073705 a(n) = Sum_{ d divides n } (n/d)^(2d).

This page as a plain text file.
%I A073705 #29 Nov 05 2017 07:44:37
%S A073705 1,5,10,33,26,182,50,577,811,1750,122,16194,170,18982,74900,135425,
%T A073705 290,847127,362,2498178,4901060,4209430,530,78564226,9766251,67138102,
%U A073705 387952660,542674914,842,4866184552,962,8606778369,31382832260,17179953862,6385992100,422091411267,1370,274878038710
%N A073705 a(n) = Sum_{ d divides n } (n/d)^(2d).
%C A073705 a(n) is the number of linear partitions of the linearly ordered set [n] = {1,2,...,n} with blocks of the same size, where each block has two element marked (possibly equal). For instance, for n = 3, we have the following 10 linear partitions (where the marked elements are denoted by a and b, or by X when they coincide):
%C A073705 (X)(X)(X), (ab3), (a2b), (1ab), (ba3), (b2a), (1ba), (X23), (1X3), (12X). - _Emanuele Munarini_, Feb 03 2014
%H A073705 Seiichi Manyama, <a href="/A073705/b073705.txt">Table of n, a(n) for n = 1..3143</a>
%F A073705 G.f.: Sum_{n>=1} -log(1 - (n^2)*x^n)/n = Sum_{n>=1} a(n) x^n/n.
%F A073705 G.f.: Sum_{k>=1} k^2*x^k/(1-k^2*x^k). - _Benoit Cloitre_, Apr 21 2003
%e A073705 a(10) = (10/1)^(2*1) +(10/2)^(2*2) +(10/5)^(2*5) +(10/10)^(2*10) = 1750 because positive divisors of 10 are 1, 2, 5, 10.
%t A073705 Table[Total[Quotient[n, x = Divisors[n]]^(2*x)], {n, 34}] (* _Jayanta Basu_, Jul 08 2013 *)
%o A073705 (PARI) a(n)=sumdiv(n, d, (d)^(2*n/d) );  /* _Joerg Arndt_, Oct 07 2012 */
%o A073705 (Maxima) a(n):= lsum(d^(2*n/d),d,listify(divisors(n)));
%o A073705 makelist(a(n),n,1,40); /* _Emanuele Munarini_ , Feb 03 2014 */
%Y A073705 Cf. A038041, A055225, A151954, A236696.
%K A073705 easy,nonn
%O A073705 1,2
%A A073705 _Paul D. Hanna_, Aug 04 2002
%E A073705 Corrected a(14) and inserted missing a(16) by _Jayanta Basu_, Jul 08 2013