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.
%I A226944 #21 Feb 15 2021 03:43:45 %S A226944 30,60,90,120,150,180,210,240,270,300,330,360,390,420,450,462,480,510, %T A226944 540,546,570,600,630,660,690,714,720,750,780,798,810,840,858,870,900, %U A226944 924,930,960,966,990,1020,1050,1080,1092,1110,1140,1170,1200,1218,1230 %N A226944 Numbers k such that 1/k + Sum_{p|k} 1/p > 1. %C A226944 1/k + Sum_{p|k} 1/p = 1 when k is a primary pseudoperfect number (A054377). %H A226944 Charles R Greathouse IV, <a href="/A226944/b226944.txt">Table of n, a(n) for n = 1..10000</a> %t A226944 fa=FactorInteger; A[n_] := Sum[1/fa[n][[i,1]], {i,Length@fa@n}]; Select[1 + Range@1200, A[#] + 1/# > 1 &] %o A226944 (PARI) is(n)=my(t=1-1/n); forprime(p=2,97,if(n%p==0,n/=p^valuation(n,p);t-=1/p; if(t<0,return(1)))); if(n<101^ceil(101*t), return(0)); my(f=factor(n)[,1]); t<sum(i=1,#f,1/f[i]) \\ _Charles R Greathouse IV_, Dec 27 2013 %Y A226944 Cf. A054377. %K A226944 nonn %O A226944 1,1 %A A226944 _José María Grau Ribas_, Jun 23 2013