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.

Showing 1-2 of 2 results.

A046148 Number of n-digit numbers with maximal multiplicative persistence A014553.

Original entry on oeis.org

10, 1, 9, 12, 20, 2430, 5229, 7448, 282852, 88200, 8015040, 200676960, 2701775518, 24655323238, 15765750, 1715313600, 59049874884, 1112489914536, 14162129381400, 135917876094000, 1050596838951660, 6832549561749912, 38554260751029408, 193081920969057120
Offset: 1

Views

Author

Keywords

Crossrefs

Programs

  • Mathematica
    mper[n_] := Block[{k=0, m=n}, While[m>9, k++; m = Times @@ IntegerDigits@ m]; k]; mxper = {1, 4, 5, 6, 7, 7, 8, 9, 9, 10, 10, 10}; multi[w_] := Total[w]!/Times @@ (w!); a[1]=10; a[n_] := Sum[ Total[ If[ mxper[[n]] == 1 + mper[Times @@ (Range[9]^#)], multi[#], 0] & /@ Permutations[p]], {p, IntegerPartitions[n, {9}, Range[0, n]]}]; Array[a, 12] (* Giovanni Resta, Sep 01 2018 *)

Extensions

a(8)-a(12) from Donovan Johnson, Mar 30 2010
a(13)-a(24) from Giovanni Resta, Aug 31 2018

A046150 Largest n-digit number with maximal multiplicative persistence A014553.

Original entry on oeis.org

9, 77, 976, 8876, 98886, 997762, 9999996, 99988862, 999888621, 9998888773, 99988887731, 999888877311, 9998888773111, 99988887731111, 998888887777772, 9988888877777721, 99999999998777772, 999999999987777721, 9999999999877777211, 99999999998777772111
Offset: 1

Views

Author

Keywords

Comments

Since there exists no number < 10^233 with multiplicative persistence 12, a(n) = 99999999998777772 * 10^(n-17) + (10^(n-17)-1)/9 for 17 <= n < 233. - Sean A. Irvine, Apr 05 2021

Crossrefs

Extensions

a(8)-a(18) from Donovan Johnson, Mar 30 2010
a(19)-a(20) from Sean A. Irvine, Apr 05 2021
Showing 1-2 of 2 results.