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-3 of 3 results.

A057338 Occurrences of most frequently occurring number in 1-to-n multiplication cube.

Original entry on oeis.org

1, 3, 6, 9, 9, 15, 15, 21, 24, 24, 24, 36, 36, 36, 48, 51, 51, 57, 57, 75, 75, 75, 75, 90, 90, 90, 90, 90, 90, 114, 114, 114, 114, 114, 126, 138, 138, 138, 138, 156, 156, 180, 180, 180, 198, 198, 198, 207, 207, 207, 207, 207, 207, 207, 207, 237, 237, 237, 237, 267
Offset: 1

Views

Author

Neil Fernandez, Aug 28 2000

Keywords

Examples

			M(n) is the array in which m(x,y,z)=x*y*z for x = 1 to n, y = 1 to n and z = 1 to n. In M(7) the most frequently occurring numbers are 12 and 24. They occur 15 times, so a(7) = 15.
		

Crossrefs

Programs

  • Haskell
    import Data.List (group, sort)
    a057338 n = head $ reverse $ sort $ map length $ group $
                sort [u * v * w | u <- [1..n], v <- [1..n], w <- [1..n]]
    -- Reinhard Zumkeller, Jun 22 2013

Extensions

More terms from David W. Wilson, Aug 28 2001

A057343 Smallest of the most frequently occurring numbers in 1-to-n 4-dimensional multiplication table.

Original entry on oeis.org

1, 4, 6, 24, 60, 60, 60, 96, 144, 360, 360, 720, 720, 720, 720, 1440, 1440, 1440, 1440, 1440, 5040, 5040, 5040, 5040, 5040, 5040, 4320, 10080, 10080, 10080, 10080, 10080, 10080, 10080, 10080, 30240, 30240, 30240, 30240, 30240, 30240, 30240, 30240, 30240, 30240, 30240, 30240, 30240, 30240, 30240
Offset: 1

Views

Author

Neil Fernandez, Aug 28 2000

Keywords

Examples

			M(n) is the array in which m(x,y,z,t)=x*y*z*t for x = 1 to n, y = 1 to n, z = 1 to n and t = 1 to n In M(7), the most frequently occurring numbers are 60, 72, 84, 120 and 168, each occurring 60 times. The smallest of these numbers is 60, so a(7) = 60.
		

Crossrefs

Extensions

a(16)-a(50) from Charlie Neder, Jan 15 2019

A057346 Smallest of the most frequently occurring numbers in 1-to-n 5-dimensional multiplication table.

Original entry on oeis.org

1, 4, 12, 48, 120, 360, 360, 480, 864, 1440, 1440, 1440, 1440, 5040, 5040, 10080, 10080, 8640, 8640, 8640, 30240, 30240, 30240, 60480, 60480, 60480, 60480, 60480, 60480, 60480, 60480, 120960, 120960, 120960, 302400, 302400, 302400, 302400, 302400, 302400, 302400, 302400
Offset: 1

Views

Author

Neil Fernandez, Aug 28 2000

Keywords

Examples

			M(n) is the array in which m(x,y,z,t,u)=x*y*z*t*u for x = 1 to n, y = 1 to n, z = 1 to n, t = 1 to n and u = 1 to n. In M(7), the most frequently occurring numbers are 360, 420, 504 and 840, each occurring 300 times. The smallest of these numbers is 360, so a(7) = 360.
		

Crossrefs

Extensions

More terms from David A. Corneth, Apr 18 2022
Showing 1-3 of 3 results.