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!)
A002660 a(n) = Sum_{d|n, d <= 3} d^2 + 3*Sum_{d|n, d>3} d.
(Formerly M3797 N1549)
4

%I M3797 N1549 #48 Mar 09 2023 05:04:21

%S 1,5,10,17,16,32,22,41,37,50,34,80,40,68,70,89,52,113,58,122,94,104,

%T 70,176,91,122,118,164,88,212,94,185,142,158,142,269,112,176,166,266,

%U 124,284,130,248,232,212,142,368,169,275,214,290,160,356,214,356,238,266,178,500,184,284,310,377,250,428,202,374,286

%N a(n) = Sum_{d|n, d <= 3} d^2 + 3*Sum_{d|n, d>3} d.

%D P. A. MacMahon, The connexion between the sum of the squares of the divisors and the number of partitions of a given number, Messenger Math., 54 (1924), 113-116. Collected Papers, MIT Press, 1978, Vol. I, pp. 1364-1367.

%D N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).

%D N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

%F Conjectured: Inverse Moebius transform of g.f.: (x + 2x^2 + 2x^3 - 2x^4) / (1 - x)^2. - _Sean A. Irvine_, May 16 2014

%F a(n) = 3 * sigma(n) - k, where k = 4 if n is even and k = 2 if n is odd. - _Sean A. Irvine_, May 16 2014

%p with(numtheory):

%p A:=proc(s,n) local d,s1,s2;

%p s1:=0; s2:=0;

%p for d in divisors(n) do

%p if d <= s then s1:=s1+d^2 else s2:=s2+d; fi; od:

%p s1+s*s2; end;

%p f:=s->[seq(A(s,n),n=1..80)]; f(3);

%t a[n_] := DivisorSum[n, If[# <= 3, #^2, 3 #]&];

%t Table[a[n], {n, 1, 100}] (* _Jean-François Alcover_, Mar 09 2023 *)

%o (PARI) a(n) = sumdiv(n, d, if (d<=3, d^2) + 3*if (d>3, d)); \\ _Michel Marcus_, Mar 09 2023

%Y Cf. A000203, A002659, A002791.

%Y A row of the array in A242639.

%K nonn

%O 1,2

%A _N. J. A. Sloane_

%E Entry revised by _N. J. A. Sloane_, May 21 2014

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 07:41 EDT 2024. Contains 371964 sequences. (Running on oeis4.)