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.

A247465 Numbers n such that n!3 - 3^5 is prime.

Original entry on oeis.org

10, 19, 28, 50, 67, 77, 89, 112, 139, 146, 184, 194, 233, 310, 311, 388, 886, 1139, 1648, 1694, 2405, 2554, 3709, 4015, 5410, 5908, 6407, 8065, 9061, 9875, 11722, 13471, 26026, 26656, 29441, 32741
Offset: 1

Views

Author

Robert Price, Sep 17 2014

Keywords

Comments

Large terms correspond to probable primes.
a(37) > 50000.

Examples

			10!3-243 = 10*7*4*1-243 = 37 is prime, so 10 is in the sequence.
		

Crossrefs

Programs

  • Mathematica
    MultiFactorial[n_, k_] := If[n < 1, 1, If[n < k + 1, n, n*MultiFactorial[n - k, k]]];
    lst={};Do[If[PrimeQ[MultiFactorial[n, 3] - 243], AppendTo[lst, n]], {n, 100}];lst