A378736 Greatest divisor d of the n-th abundant number such that sigma(d) <= 2*d < A003961(d).
6, 9, 10, 8, 15, 9, 10, 21, 16, 27, 28, 15, 6, 35, 9, 39, 16, 28, 44, 45, 32, 50, 6, 52, 27, 28, 57, 15, 63, 44, 69, 35, 16, 75, 52, 32, 81, 28, 6, 44, 45, 6, 64, 98, 99, 50, 68, 52, 105, 27, 110, 6, 32, 76, 117, 16, 6, 63, 6, 130, 44, 135, 136, 92, 35, 6, 32, 147, 75, 152, 153, 154, 52, 6, 64, 81, 165, 28, 170, 171
Offset: 1
Keywords
Links
- Antti Karttunen, Table of n, a(n) for n = 1..20000
Programs
-
PARI
A003961(n) = { my(f = factor(n)); for (i=1, #f~, f[i, 1] = nextprime(f[i, 1]+1)); factorback(f); }; A294935(n) = (sigma(n)<=(2*n)); A341612(n) = ((sigma(n)<=(2*n))&&((2*n)<A003961(n))); A378664(n) = { fordiv(n,d,if(A341612(n/d), return(n/d))); (1); }; k=0; n=0; while(k<20000, n++; if(!A294935(n), k++; print1(A378664(n),", ")));
Extensions
Unnecessary escape-clause removed from the definition by Antti Karttunen, Dec 12 2024
Comments