login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 


A074165
Numbers n such that n!!! is an interprime.
1
4, 6, 13, 15, 16, 23, 28, 46, 126, 148, 285
OFFSET
1,1
COMMENTS
No additional terms up to n = 700. - Harvey P. Dale, Aug 02 2018
MATHEMATICA
PrevPrim[n_] := Block[{k = n - 1}, While[ ! PrimeQ[k], k-- ]; k]; NextPrim[n_] := Block[{k = n + 1}, While[ ! PrimeQ[k], k++ ]; k]; NFactorialM[n_, m_] := Block[{k = n, p = n}, While[k > m, k -= m; p = p*k]; p]; Do[ a = NFactorialM[n, 3]; If[2a == PrevPrim[a] + NextPrim[a], Print[n]], {n, 3, 500}]
npipQ[n_]:=Module[{p=Times@@Range[n, 1, -3]}, p==Mean[{NextPrime[ p], NextPrime[ p, -1]}]]; Select[Range[300], npipQ] (* Harvey P. Dale, Aug 02 2018 *)
CROSSREFS
Sequence in context: A191199 A354089 A247787 * A137821 A010061 A280557
KEYWORD
nonn
AUTHOR
Robert G. Wilson v, Sep 16 2002
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified September 22 05:15 EDT 2024. Contains 376097 sequences. (Running on oeis4.)