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.

A180493 Numbers n such that prime(n)! is divisible by A180491(prime(n)).

Original entry on oeis.org

1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 29, 30, 35, 38, 39, 40, 53
Offset: 1

Views

Author

Carl R. White, Sep 08 2010

Keywords

Comments

Also numbers n such that prime(n)! is divisible by A180492(n).
Is this sequence finite?
From Robert G. Wilson v, Sep 09 2010: (Start)
Checked to 10000 for more terms.
Conjecture: This sequence is finite and all its terms are present. (End)

Crossrefs

Programs

  • Mathematica
    f[n_] := Times @@ Mod[n, Range[2, n - 1]]; k = 1; lst = {}; While[k < 10001, If[ Divisible[ Prime@k!, f@Prime@k], AppendTo[lst, k]; Print@k]; k++ ]; lst (* Robert G. Wilson v, Sep 09 2010 *)