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.

A364600 a(n) is the least number with exactly n divisors of the form 5*k+4.

This page as a plain text file.
%I A364600 #11 Jan 28 2025 01:44:15
%S A364600 1,4,24,72,144,432,504,1008,1512,3528,3024,7056,5544,14112,11088,
%T A364600 13104,16632,26208,36288,63504,33264,68544,77616,127008,66528,154224,
%U A364600 155232,209664,133056,222768,144144,301392,216216,853776,288288,471744,399168,825552,698544,1707552,432432
%N A364600 a(n) is the least number with exactly n divisors of the form 5*k+4.
%H A364600 Amiram Eldar, <a href="/A364600/b364600.txt">Table of n, a(n) for n = 0..100</a>
%o A364600 (PARI) list(nmax) = {my(v = vector(nmax+1), c = 0, k = 1, i); while(c < nmax+1, i = sumdiv(k, d, d % 5 == 4) + 1; if(i <= nmax+1 && v[i] == 0, c++; v[i] = k); k++); v;} \\ _Amiram Eldar_, Jan 28 2025
%Y A364600 Cf. A001899, A005179, A038547, A364586, A364598, A364599.
%K A364600 nonn
%O A364600 0,2
%A A364600 _Ilya Gutkovskiy_, Jul 29 2023