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.

A216793 Numbers n such that gcd(sigma(n), n) > gcd(sigma(m), m) for all m < n.

This page as a plain text file.
%I A216793 #19 Aug 02 2019 03:46:13
%S A216793 1,6,24,28,120,496,672,4320,4680,8128,26208,30240,32760,174592,199584,
%T A216793 293760,435708,523776,2142720,2178540,8910720,17428320,20427264,
%U A216793 23569920,33550336,45532800,91963648,142990848,459818240,1379454720,1476304896,6039429120
%N A216793 Numbers n such that gcd(sigma(n), n) > gcd(sigma(m), m) for all m < n.
%C A216793 a(30) > 10^9.
%e A216793 a(2) = 6 because gcd(sigma(1), 1) = 1, gcd(sigma(2), 2) = 1, gcd(sigma(3), 3) = 1, gcd(sigma(4), 4) = 1, gcd(sigma(5), 5) = 1, and for n = 6, we have gcd(sigma(6), 6) = 6, which is greater than the five preceding.
%o A216793 (PARI) mgcdab(n) = { m = 0; for (i=1, n, g = gcd(sigma(i), i); if (g > m, m = g; print1(i, ", ");););}
%Y A216793 Cf. A009194.
%K A216793 nonn
%O A216793 1,2
%A A216793 _Michel Marcus_, Sep 16 2012
%E A216793 a(30)-a(32) from _Donovan Johnson_, Sep 17 2012