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 A064112 #23 Nov 17 2019 03:51:09 %S A064112 99,155,689,1106,1517,1524,3014,3403,3479,5809,6478,6723,8606,9143, %T A064112 9454,9797,10126,11771,12283,12382,13112,13969,14150,17422,19303, %U A064112 22184,24856,27466,28119,28529,35927,36464,37512,41904,44505,45016,45506 %N A064112 Numbers k such that sopf(k) = 2*sopf(k+1), where sopf(k) = A008472. %H A064112 Amiram Eldar, <a href="/A064112/b064112.txt">Table of n, a(n) for n = 1..10000</a> (terms 1..600 from Harry J. Smith) %e A064112 sopf(689)=66, 2*sopf(690)=66. %o A064112 (PARI) sopf(n, s, fac, i) = fac=factor(n); for(i=1,matsize(fac)[1],s=s+fac[i,1]); return(s); %o A064112 j=[]; for(n=1,50000, if(sopf(n)==2*sopf(n+1),j=concat(j,n))); j %o A064112 (PARI) sopf(n)= { local(f,s=0); f=factor(n); for(i=1, matsize(f)[1], s+=f[i, 1]); return(s) } %o A064112 { n=0; sm=sopf(1); for (m=1, 10^9, sp=sopf(m + 1); if (sm==2*sp, write("b064112.txt", n++, " ", m); if (n==600, break)); sm=sp ) } \\ _Harry J. Smith_, Sep 07 2009 %Y A064112 Cf. A008472 (sopf). %K A064112 nonn %O A064112 1,1 %A A064112 _Jason Earls_, Sep 08 2001