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.

A242370 Triangle read by rows: T(n, k) is the smallest x such that the denominator of sigma(x)/x is equal to n and the numerator of sigma(x)/x is congruent to k modulo n.

This page as a plain text file.
%I A242370 #28 Jun 08 2014 09:02:07
%S A242370 2,3,84,40,2,4,5,30,15,10,18,3,2,84,1907020800,7,42,840,280,14,168,
%T A242370 58752,40,32640,2,96,4,8,540,54,3,9,117,84,135,252,20,5,238080,30,2,
%U A242370 15,1120,10,10080,11,66,1320,198,33,132,22,264,528,44,392448,18,40,3
%N A242370 Triangle read by rows: T(n, k) is the smallest x such that the denominator of sigma(x)/x is equal to n and the numerator of sigma(x)/x is congruent to k modulo n.
%C A242370 When p is prime T(p, 1) is equal to p.
%C A242370 When n and k are not coprime, T(n, k) = T(n/gcd(n, k), k/gcd(n,k)).
%C A242370 Next term T(12, 5) is <= 212569733376000 with sigma(x)/x = 65/12 and 65 == 5 mod 12.
%e A242370 T(2, 1) = 2 since sigma(2)/2 = 3/2 has denominator 2 and numerator 3 == 1(mod 2).
%e A242370 T(3, 1) = 3 since sigma(3)/3 = 4/3 has denominator 3 and numerator 4 == 1(mod 3).
%e A242370 T(3, 2) = 84 since sigma(84)/84 = 8/3 has denominator 3 and numerator 8 == 2(mod 3).
%e A242370 Triangle starts:
%e A242370 2,
%e A242370 3, 84,
%e A242370 40, 2, 4,
%e A242370 5, 30, 15, 10,
%e A242370 18, 3, 2, 84, 1907020800,
%e A242370 7, 42, 840, 280, 14, 168,
%e A242370 ...
%o A242370 (PARI) T(k, n) = {for (i=1, 10^10, ab = sigma(i)/i; if ((numerator(ab) % denominator(ab))/denominator(ab) == k/n, return (i)););}
%Y A242370 Cf. A017665 and A017666 (sigma(n)/n), A239578 and A162657 (similar sequences with numerators or denominators).
%K A242370 nonn,tabl
%O A242370 2,1
%A A242370 _Michel Marcus_, Jun 07 2014