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.

A052072 Smallest cubes whose digits occur with the same frequency n.

This page as a plain text file.
%I A052072 #32 May 26 2025 16:57:17
%S A052072 0,1331,700227072,22676697737363992239,1728999927211172788179288,
%T A052072 256263633328535368685258882625,19194114355415391344355399945943513,
%U A052072 2342441231418833141828248411332348812823
%N A052072 Smallest cubes whose digits occur with the same frequency n.
%H A052072 Patrick De Geest, <a href="http://www.worldofnumbers.com/samedigits.htm">Numbers whose digits occur with same frequency</a>
%e A052072 22676697737363992239 (= 2830479^3) and its digits 2, 3, 6, 7 and 9 each occur four times.
%t A052072 Table[i = 0;
%t A052072 While[x = i^3; Union@DeleteCases[DigitCount[x], 0] != {n}, i++];
%t A052072 x, {n, 7}] (* _Robert Price_, Oct 12 2019 *)
%t A052072 Select[Range[400]^3,Length[Union[DeleteCases[DigitCount[#],0]]]==1&] (* _Harvey P. Dale_, Apr 30 2022 *)
%o A052072 (Python)
%o A052072 def A052072(n):
%o A052072     a, b, c = 0, 0, 0
%o A052072     for i in range(10**9):
%o A052072         s = str(c)
%o A052072         for d in set(s):
%o A052072             if s.count(d) != n:
%o A052072                 break
%o A052072         else:
%o A052072             return c
%o A052072         c += a + b + 1
%o A052072         b += 2*a + 3
%o A052072         a += 3
%o A052072     return 'search limit reached.'  # _Chai Wah Wu_, Aug 11 2015
%Y A052072 Cf. A052071, A052047, A052048, A052051, A052052, A052070.
%K A052072 nonn,base,more,nice
%O A052072 1,2
%A A052072 _Patrick De Geest_, Jan 15 2000
%E A052072 Offset corrected by _Michel Marcus_, Aug 12 2015
%E A052072 a(7) from _Giovanni Resta_, Aug 19 2018
%E A052072 a(8) from _Mihael Tunik_, May 26 2025