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.

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

This page as a plain text file.
%I A364599 #11 Jan 28 2025 01:44:03
%S A364599 1,3,18,48,144,288,504,1248,1008,2016,3024,4368,5544,14112,12096,
%T A364599 17136,11088,34272,22176,26208,33264,52416,48048,91728,66528,117936,
%U A364599 155232,183456,133056,235872,188496,222768,144144,528528,376992,616896,421344,825552,288288,1707552,432432
%N A364599 a(n) is the least number with exactly n divisors of the form 5*k+3.
%H A364599 Amiram Eldar, <a href="/A364599/b364599.txt">Table of n, a(n) for n = 0..100</a>
%o A364599 (PARI) list(nmax) = {my(v = vector(nmax+1), c = 0, k = 1, i); while(c < nmax+1, i = sumdiv(k, d, d % 5 == 3) + 1; if(i <= nmax+1 && v[i] == 0, c++; v[i] = k); k++); v;} \\ _Amiram Eldar_, Jan 28 2025
%Y A364599 Cf. A001878, A005179, A038547, A364586, A364598, A364600.
%K A364599 nonn
%O A364599 0,2
%A A364599 _Ilya Gutkovskiy_, Jul 29 2023