%I #20 Aug 12 2023 11:07:09
%S 100,50,33,25,20,16,14,12,11,10,9,8,7,7,6,6,5,5,5,5,4,4,4,4,4,3,3,3,3,
%T 3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,
%U 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
%N a(n) = floor(100/n).
%C a(n) is also the percentage of the first n elements of the list represented by n. e.g., 2 is 50% of the sequence 1,2. - _Dominick Cancilla_, Aug 09 2010
%t Floor[100/Range[100]] (* _Harvey P. Dale_, May 27 2021 *)
%o (Magma) [Floor(100/n): n in [1..100]]; // _Wesley Ivan Hurt_, Apr 04 2023
%o (PARI) a(n) = 100\n; \\ _Seiichi Manyama_, Aug 12 2023
%Y Cf. A033421, A033422, A033423, A033424, A033425, A033426, A057072.
%K easy,nonn
%O 1,1
%A _Jeff Burch_