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.

A218385 (n-2)!/n when an integer.

Original entry on oeis.org

4, 90, 560, 4032, 302400, 34214400, 415134720, 5448643200, 1162377216000, 320118685286400, 5792623828992000, 110586454917120000, 46833363657400320000, 1034080669555399065600, 23863400066663055360000, 574489260864110592000000, 14403266468807344128000000, 10162944820390462016716800000
Offset: 1

Views

Author

Geoffrey Critzer, Oct 27 2012

Keywords

Comments

n divides (n-2)! for all composite n >= 6.

Examples

			a(1) = 4 because 4!/6 = 4. That is, 6 divides 4!.
a(2) =90 because the next composite number after 6 is 8. 6!/8 = 90, which means 8 divides 6!
		

Crossrefs

Cf. A129906.

Programs

  • Mathematica
    f[n_] := If[PrimeQ[n], 0, (n-2)!/n]; Select[Table[f[n], {n,30}], IntegerQ[#] && #>0&]
Showing 1-1 of 1 results.