A364598 a(n) is the least number with exactly n divisors of the form 5*k+2.
1, 2, 12, 42, 84, 252, 462, 672, 924, 2016, 2772, 4032, 5544, 9072, 7392, 17136, 14784, 26208, 22176, 34272, 33264, 52416, 44352, 119952, 66528, 117936, 99792, 183456, 125664, 222768, 188496, 235872, 199584, 487872, 288288, 616896, 399168, 1206576, 376992, 1097712, 432432
Offset: 0
Keywords
Links
- Amiram Eldar, Table of n, a(n) for n = 0..100
Programs
-
PARI
list(nmax) = {my(v = vector(nmax+1), c = 0, k = 1, i); while(c < nmax+1, i = sumdiv(k, d, d % 5 == 2) + 1; if(i <= nmax+1 && v[i] == 0, c++; v[i] = k); k++); v;} \\ Amiram Eldar, Jan 28 2025