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 A353002 #21 May 12 2022 15:19:46 %S A353002 93,2653,30433,1922113,15421122,28776673,240409057,611393953, %T A353002 2713190397,5413336381 %N A353002 Numbers k such that the k-th triangular number mod the sum (with multiplicity) of prime factors of k, and the k-th triangular number mod the sum of divisors of k, are the same prime. %e A353002 a(1) = 93 is a term because 93*94/2 = 4371, A000217(93) = 128, A001414(93) = 34, and 4371 mod 128 = 4371 mod 34 = 19, which is prime. %p A353002 filter:= proc(n) local a,b,c,t; %p A353002 a:= n*(n+1)/2; %p A353002 b:= add(t[1]*t[2],t=ifactors(n)[2]); %p A353002 t:= a mod b; if not isprime(t) then return false fi; %p A353002 c:= numtheory:-sigma(n); %p A353002 a mod c = t %p A353002 end proc: %p A353002 select(filter, [$2..2*10^7]); %t A353002 Select[Range[2*10^6], (r = Mod[#*(# + 1)/2, DivisorSigma[1, #]]) == Mod[#*(# + 1)/2, Plus @@ Times @@@ FactorInteger[#]] && PrimeQ[r] &] (* _Amiram Eldar_, Apr 15 2022 *) %Y A353002 Cf. A000217, A001414, A232324, A352996, A353001. %K A353002 nonn,more %O A353002 1,1 %A A353002 _J. M. Bergot_ and _Robert Israel_, Apr 15 2022 %E A353002 a(8) from _Amiram Eldar_, Apr 15 2022 %E A353002 a(9)-a(10) from _Daniel Suteu_, May 12 2022