[go: up one dir, main page]

login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A052071 revision #14

A052071
a(n)^3 is the smallest cube whose digits occur with the same frequency n.
6
0, 11, 888, 2830479, 120023142, 6351783105, 267745815817
OFFSET
1,2
EXAMPLE
2830479^3 = 22676697737363992239 and its digits 2, 3, 6, 7 and 9 each occur four times.
MATHEMATICA
Table[i = 0;
While[x = i^3; Union@DeleteCases[DigitCount[x], 0] != {n}, i++];
i, {n, 7}] (* Robert Price, Oct 12 2019 *)
CROSSREFS
KEYWORD
nonn,base,more,nice
AUTHOR
Patrick De Geest, Jan 15 2000
EXTENSIONS
Offset corrected by Michel Marcus, Aug 12 2015
a(7) from Giovanni Resta, Aug 19 2018
STATUS
editing