OFFSET
1,4
LINKS
Kevin P. Thompson, Table of n, a(n) for n = 1..106
Florian Luca and Igor E. Shparlinski, On the largest prime factor of n! + 2^n - 1, Journal de Théorie des Nombres de Bordeaux 17 (2005), 859-870.
FORMULA
EXAMPLE
6! + 2^6 - 1 = 783 = 3^3 * 29, hence a(6) = 4.
MATHEMATICA
PrimeOmega @ Table[n! + 2^n - 1, {n, 1, 30}] (* Amiram Eldar, Feb 05 2020 *)
PROG
(Magma) pfmult := func< n | &+[ d[2]: d in Factorization(n) ] >; [ pfmult(Factorial(n)+2^n-1): n in [1..50] ]; //Some values were computed using Dario Alpern's ECM Factorization Program.
(PARI) a(n)=bigomega(n!+2^n-1) \\ Charles R Greathouse IV, Feb 01 2013
CROSSREFS
KEYWORD
nonn
AUTHOR
Klaus Brockhaus, Nov 20 2009
EXTENSIONS
a(76)-a(81) from Amiram Eldar, Feb 05 2020
a(82) onwards from Kevin P. Thompson, Jun 29 2022
STATUS
approved