The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A238905 The tau(sigma)-perfect numbers, where the set of f-perfect numbers for an arithmetical function f is defined in A066218. 1

%I #15 Aug 22 2023 11:58:57

%S 6,15,22,33,39,57,69,111,129,141,183,201,214,219,237,309,453,471,489,

%T 573,579,633,669,813,831,849,939,993,1101,1149,1191,1263,1371,1389,

%U 1461,1519,1569,1623,1641,1821,1839,1893,1942,1983,2019,2073,2199,2253,2271

%N The tau(sigma)-perfect numbers, where the set of f-perfect numbers for an arithmetical function f is defined in A066218.

%H Amiram Eldar, <a href="/A238905/b238905.txt">Table of n, a(n) for n = 1..10000</a> (terms 1..1000 from Paolo P. Lava)

%e Aliquot divisors of 39 are 1, 3, 13. Then tau(sigma(1)) + tau(sigma(3)) + tau(sigma(13)) = 1 + 3 + 4 = 8 and tau(sigma(39)) = 8.

%p with(numtheory); P:=proc(q) local a,b,i,n;

%p for n from 1 to q do a:=divisors(n); b:=0;

%p for i from 1 to nops(a)-1 do b:=b+tau(sigma(a[i])); od;

%p if tau(sigma(n))=b then print(n); fi; od; end: P(10^6);

%t q[n_] := DivisorSum[n, DivisorSigma[0, DivisorSigma[1, #]] &, # < n &] == DivisorSigma[0, DivisorSigma[1, n]]; Select[Range[2300], q] (* _Amiram Eldar_, Aug 22 2023 *)

%o (PARI) isok(n) = numdiv(sigma(n)) == sumdiv(n, d, (d<n)*numdiv(sigma(d))); \\ _Michel Marcus_, Mar 08 2014

%Y Cf. A000005, A000230, A066218.

%K nonn,easy

%O 1,1

%A _Paolo P. Lava_, Mar 07 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 June 7 18:53 EDT 2024. Contains 373206 sequences. (Running on oeis4.)