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.

A090105 Decimal value of largest digit of n! when it was written in base n.

Original entry on oeis.org

1, 1, 2, 2, 4, 3, 6, 6, 7, 8, 10, 5, 12, 6, 12, 8, 16, 14, 18, 19, 20, 20, 22, 23, 23, 24, 25, 24, 28, 29, 30, 29, 31, 30, 32, 33, 36, 37, 33, 39, 40, 40, 42, 40, 43, 45, 46, 45, 46, 47, 49, 51, 52, 51, 54, 55, 56, 56, 58, 59, 60, 60, 61, 63, 62, 64, 66, 67, 68, 65, 70, 67, 72, 71
Offset: 1

Views

Author

Labos Elemer, Dec 17 2003

Keywords

Examples

			For n=12: 12! = 114500000_12, so a(12) = 5.
		

Crossrefs

Programs

  • Maple
    f:= n -> max(convert(n!,base,n)): f(1):= 1:map(f, [$1..100]); # Robert Israel, Dec 09 2020
  • Mathematica
    Table[Max[IntegerDigits[w!, w]], {w, 2, 100}]
  • PARI
    a(n) = if(n==1, 1, vecmax(digits(n!, n))) \\ Felix Fröhlich, Dec 09 2020