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.

A283190 a(n) is the number of different values n mod k for 1 <= k <= floor(n/2).

This page as a plain text file.
%I A283190 #37 Aug 29 2025 10:14:57
%S A283190 0,1,1,1,2,1,2,2,2,3,4,2,3,3,3,4,5,4,5,4,4,5,6,5,6,7,7,7,8,6,7,7,7,8,
%T A283190 9,8,9,9,9,10,11,9,10,9,9,10,11,10,11,12,12,12,13,12,13,13,13,14,15,
%U A283190 13,14,14,14,15,16,15,16,15,15,16,17,16,17,17,17,17,18,17
%N A283190 a(n) is the number of different values n mod k for 1 <= k <= floor(n/2).
%C A283190 a(n) is the number of distinct terms in the first half of the n-th row of the A048158 triangle. - _Michel Marcus_, Mar 04 2017
%C A283190 a(n)/n appears to converge to a constant, approximately 0.2296. Can this be proved, and does the constant have a closed form? - _Robert Israel_, Mar 13 2017
%C A283190 The constant that a(n)/n approaches is Sum {p prime} 1/(p^2+p)* Product {q prime < p} (q-1)/q. - _Michael R Peake_, Mar 16 2017
%H A283190 Robert Israel, <a href="/A283190/b283190.txt">Table of n, a(n) for n = 1..10000</a>
%H A283190 Omkar Baraskar and Ingrid Vukusic, <a href="https://arxiv.org/abs/2508.20853">Bounds for sets of remainders</a>, arXiv:2508.20853 [math.NT], 2025.
%H A283190 Michael R Peake, <a href="https://math.stackexchange.com/questions/2185962/asymptotics-of-a283190">Explanation of limiting value of a(n)/n</a>
%e A283190 a(7) = 2 because 7=0 (mod 1), 7=1 (mod 2), 7=1 (mod 3), two different results.
%p A283190 N:= 100: # to get a(1)..a(N)
%p A283190 V:= Vector(N,1):
%p A283190 V[1]:= 0:
%p A283190 for m from 2 to N-1 do
%p A283190   k:= m/min(numtheory:-factorset(m));
%p A283190   ns:= [seq(n,n=m+1..min(N,m+k-1))];
%p A283190   V[ns]:= map(`+`,V[ns],1);
%p A283190 od:
%p A283190 convert(V,list); # _Robert Israel_, Mar 13 2017
%t A283190 Table[Length@ Union@ Map[Mod[n, #] &, Range@ Floor[n/2]], {n, 78}] (* _Michael De Vlieger_, Mar 03 2017 *)
%o A283190 (PARI) a(n) = #vecsort(vector(n\2, k, n % k),,8); \\ _Michel Marcus_, Mar 02 2017
%Y A283190 Cf. A048158.
%K A283190 nonn,changed
%O A283190 1,5
%A A283190 _Thomas Kerscher_, Mar 02 2017