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.

A135726 Primes of the form k!!! - 1 = A007661(k) - 1, k > 0.

Original entry on oeis.org

2, 3, 17, 79, 4188799, 2504902399, 254561089305599, 13106744139423334399999, 8483004771271882804592639999, 706526001186582385898210420541078864497278132689882316799999999, 353401447088718405944982176443380974931403135679741865504466985287679999999999
Offset: 1

Views

Author

M. F. Hasler, Nov 26 2007

Keywords

Comments

Sequence A084438 gives the easier-to-read n-values.
All terms greater than a(3) seem to end in the digit 9, or many 9 digits. a(17) ends with 51 9 digits. - Harvey P. Dale, Nov 28 2019

Examples

			a(4) = 79 = 8*5*2 - 1 = 8!!! - 1 is the 4th prime of that form.
		

Crossrefs

Programs

  • Mathematica
    Select[Table[Times@@Range[n,1,-3],{n,150}]-1,PrimeQ] (* Harvey P. Dale, Nov 28 2019 *)
  • PARI
    A007661(n) = prod(i=1,(n-1)\3,n-=3,n+!n)
    for(n=1,999,if(isprime(A007661(n)-1),print1(A007661(n)-1,",")))

Formula

a(n) = A007661(A084438(n)) - 1. - Elmo R. Oliveira, Feb 25 2025