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.

A242427 n! mod n^3.

This page as a plain text file.
%I A242427 #12 Aug 08 2025 11:52:49
%S A242427 0,2,6,24,120,72,238,384,567,800,110,0,2184,784,0,0,1428,0,703,0,0,
%T A242427 2904,4209,0,0,13520,0,0,15109,0,18228,0,0,30056,0,0,9546,14440,0,0,
%U A242427 26855,0,23994,0,0,25392,13207,0,0,0,0,0,95453,0,0,0,0,148016,93928,0,208315
%N A242427 n! mod n^3.
%t A242427 Table[Mod[n!,n^3],{n,80}] (* _Harvey P. Dale_, Aug 03 2017 *)
%o A242427 (Python)
%o A242427 import math
%o A242427 for i in range(1,77): print(math.factorial(i) % (i**3), end=', ')
%Y A242427 Cf. A000142, A000578, A072230, A242426.
%K A242427 nonn
%O A242427 1,2
%A A242427 _Alex Ratushnyak_, May 14 2014