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.

A271345 Integers n such that (n-1)! is divisible by n^3.

Original entry on oeis.org

1, 12, 18, 20, 24, 27, 28, 30, 32, 35, 36, 40, 42, 44, 45, 48, 49, 50, 52, 54, 55, 56, 60, 63, 64, 65, 66, 68, 70, 72, 75, 76, 77, 78, 80, 81, 84, 85, 88, 90, 91, 92, 95, 96, 98, 99, 100, 102, 104, 105, 108, 110, 112, 114, 115, 116, 117, 119, 120, 121, 124, 125, 126, 128, 130, 132, 133, 135
Offset: 1

Views

Author

Altug Alkan, Apr 04 2016

Keywords

Comments

Integers n such that A000142(n-1) is divisible by A000578(n).
Obviously, all terms are nonprime.
For n > 1, members of this sequence are short leg of more than one Pythagorean triangle.

Examples

			12 is a term because 11! is divisible 12^3.
		

Crossrefs

Programs

  • PARI
    lista(nn) = for(n=1, nn, if((n-1)! % (n^3) == 0, print1(n, ", ")));