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.

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

This page as a plain text file.
%I A364586 #14 Jan 28 2025 01:45:09
%S A364586 1,6,36,66,252,336,672,1008,3528,2016,4032,3696,9072,7392,13104,11088,
%T A364586 36288,38304,26208,22176,68544,44352,91728,66528,154224,99792,209664,
%U A364586 96096,301392,144144,222768,188496,487872,399168,471744,421344,1079568,288288,1097712,432432
%N A364586 a(n) is the least number with exactly n divisors of the form 5*k+1.
%H A364586 Amiram Eldar, <a href="/A364586/b364586.txt">Table of n, a(n) for n = 1..100</a>
%o A364586 (PARI) a(n) = my(k=1); while (sumdiv(k, d, (d%5)==1) != n, k++); k; \\ _Michel Marcus_, Jul 29 2023
%o A364586 (PARI) list(nmax) = {my(v = vector(nmax), c = 0, k = 1, i); while(c < nmax, i = sumdiv(k, d, d % 5 == 1); if(i <= nmax && v[i] == 0, c++; v[i] = k); k++); v;} \\ _Amiram Eldar_, Jan 28 2025
%Y A364586 Cf. A001876, A005179, A038547, A364598, A364599, A364600.
%K A364586 nonn
%O A364586 1,2
%A A364586 _Ilya Gutkovskiy_, Jul 28 2023