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

A217672 Largest k such that k^n divides k!!

Original entry on oeis.org

1, 8, 16, 36, 24, 32, 60, 72, 80, 48, 135, 200, 168, 120, 297, 189, 144, 96, 160, 252, 180, 270, 539, 400, 405, 315, 336, 240, 594, 378, 192, 660, 525, 420, 288, 448, 600, 770, 320, 648, 504, 1001, 675, 360, 560, 1496, 1125, 972, 800, 810, 630, 1056, 1300, 384
Offset: 1

Views

Author

Michel Lagneau, Oct 10 2012

Keywords

Comments

Largest k such that A217467(k)=n.

Examples

			a(5)=24 because 24^5 divides 24!! but 24^6 does not divide 24!!.
		

Crossrefs

Programs

  • Mathematica
    kdn[n_]:=Module[{k=2}, While[!Divisible[k!!, k^n]||Divisible[k!!, k^(n+1)], k++]; k]; Join[{1}, Array[kdn, 60, 2]]
Showing 1-1 of 1 results.