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.

A224346 Numbers n such that Sum_{i=1..k} 1/p(i) + Sum_{i=1..j} 1/d(i) is an integer, where p are the prime factors of n, counted with multiplicity, and d its divisors.

This page as a plain text file.
%I A224346 #21 Jan 09 2025 02:17:40
%S A224346 1,2,21,44,560,752,2064,12224,98595,38735300,53668332,147728896,
%T A224346 407729196,423212608,516441712,1227777925,1323319996,20440128681,
%U A224346 153088685248,206158168064,375868306368,798666196041
%N A224346 Numbers n such that Sum_{i=1..k} 1/p(i) + Sum_{i=1..j} 1/d(i) is an integer, where p are the prime factors of n, counted with multiplicity, and d its divisors.
%C A224346 If (Sum_{i=1..k} 1/p(i)) * (Sum_{i=1..j} 1/d(i)) is considered, for n between 1 and 10^6, only 1080 gives an integer value: 27/10 * 10/3 = 9.
%C A224346 a(23) > 10^12. - _Giovanni Resta_, Apr 10 2013
%e A224346 n=44; its prime factors are 2^2, 11 while its divisors are 1, 2, 4, 11, 22, 44 and 1/2 + 1/2 + 1/11 + 1/1 + 1/2 + 1/4 + 1/11 + 1/22 + 1/44 = 3.
%p A224346 with(numtheory); List224346:=proc(q) local a,b,c,j,n;
%p A224346 for n from 1 to q do
%p A224346 a:=ifactors(n)[2]; b:=0; for j from 1 to nops(a) do b:=b+a[j,2]/a[j,1]; od;
%p A224346 c:=sigma(n)/n; if type(b+c,integer) then print(n); fi; od; end:
%p A224346 List224346(10^6);
%t A224346 Select[Range[10^5], Mod[DivisorSigma[1,#] + Total[# / Divide @@@ FactorInteger@#], #] == 0 &] (* _Giovanni Resta_, Apr 10 2013 *)
%Y A224346 Cf. A000203, A001414.
%K A224346 nonn,more
%O A224346 1,2
%A A224346 _Paolo P. Lava_, Apr 08 2013
%E A224346 a(1)=1 and a(10)-a(22) from _Giovanni Resta_, Apr 10 2013