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.

A182204 Numbers n for which A068869(n) < sqrt(n!).

Original entry on oeis.org

1, 4, 5, 6, 7, 8, 10, 11, 14, 15, 16, 19, 20, 24, 25, 26, 27, 29, 30, 33, 37, 42, 43, 45, 46, 47, 50, 53, 54, 55, 59, 60, 61, 62, 64, 66, 70, 74, 76, 83, 84, 89, 94, 95, 96, 98, 102, 103, 104, 107, 109, 111, 113, 114, 117, 118, 122, 123, 125, 127, 128, 129
Offset: 1

Views

Author

Artur Jasinski, Apr 17 2012

Keywords

Comments

There are two cases: A068869(n) > sqrt(n!) see A182203 and A068869(n) < sqrt(n!) this sequence.

Crossrefs

Programs

  • Mathematica
    aa = {}; Do[k = Ceiling[Sqrt[n!]]^2 - n!;
      If[k < Sqrt[n!], AppendTo[aa, n]], {n, 1, 118}]; aa