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.

A049358 Digitally balanced numbers in base 7: equal numbers of 0's, 1's, ..., 6's.

Original entry on oeis.org

123717, 123723, 123759, 123771, 123807, 123813, 124011, 124017, 124095, 124113, 124143, 124155, 124347, 124359, 124389, 124407, 124485, 124491, 124689, 124695, 124731, 124743, 124779, 124785, 125775, 125781, 125817, 125829, 125865, 125871, 126363, 126369
Offset: 1

Views

Author

Keywords

Comments

There are 4,320 terms with single numbers of the zero-to-six digits. - Harvey P. Dale, May 02 2025

Examples

			123717 is 1023456 in base 7.
		

Crossrefs

Cf. A031443.
Row n = 7 of A378000.

Programs

  • Mathematica
    Select[Range[126000], Length[Union[DigitCount[#, 7]]]==1&] (* Vincenzo Librandi, Apr 18 2013 *)
    FromDigits[IntegerDigits[#],7]&/@Select[FromDigits/@Permutations[Range[0,6]],IntegerLength[#]==7&] (* Harvey P. Dale, May 02 2025 *)