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.

A023736 Numbers with exactly 3 3's in their base-5 expansion.

Original entry on oeis.org

93, 218, 343, 393, 418, 443, 453, 458, 463, 465, 466, 467, 469, 473, 493, 593, 718, 843, 968, 1018, 1043, 1068, 1078, 1083, 1088, 1090, 1091, 1092, 1094, 1098, 1118, 1218, 1343, 1468, 1593, 1643, 1668, 1693, 1703, 1708
Offset: 1

Views

Author

Keywords

Crossrefs

Programs

  • Maple
    seq(`if`(numboccur(3,convert(n,base,5))=3,n,NULL),n=0..2000); # Nathaniel Johnston, Jun 27 2011
  • Mathematica
    Select[ Range[ 1750 ], (Count[ IntegerDigits[ #, 5 ], 3 ]==3)& ]