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.

A045527 Numbers k such that k! has initial digit '8'.

Original entry on oeis.org

14, 29, 31, 33, 40, 52, 60, 65, 71, 79, 121, 131, 145, 151, 246, 251, 256, 286, 303, 329, 346, 357, 373, 423, 434, 448, 478, 494, 543, 579, 610, 650, 678, 684, 703, 738, 746, 754, 771, 780, 810, 834, 847
Offset: 1

Views

Author

Keywords

Comments

The asymptotic density of this sequence is log_10(9/8) = 0.051152... (Kunoff, 1987). - Amiram Eldar, Jul 17 2020

Examples

			14 is a term since 14! = 87178291200 has the initial digit 8.
		

Crossrefs

For factorials with initial digit d (1 <= d <= 9) see A045509, A045510, A045511, A045516, A045517, A045518, A282021, A045519; A045520, A045521, A045522, A045523, A045524, A045525, A045526, A045527, A045528, A045529. See also A000142, A008905.

Programs

  • Mathematica
    Select[ Range[ 900 ], IntegerDigits[ #! ] [ [1] ] == 8 & ]
  • PARI
    isok(n) = digits(n!)[1] == 8; \\ Michel Marcus, Feb 08 2017

Formula

A008905(a(n)) = 8. - Amiram Eldar, Jul 17 2020