OFFSET
1,2
COMMENTS
If a prime is a divisor of a(n) it is also a divisor of a(n+1).
Hernane and Nicolas named these numbers h-champion numbers (the function h(n) is A008480). - Amiram Eldar, Aug 20 2019
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..2011 (terms 1..80 from Reinhard Zumkeller)
Marc Deléglise, Tables des 785 premiers champions de la fonction h(n), alternative link (pdf format).
Mohand-Ouamar Hernane and Jean-Louis Nicolas, Grandes valeurs du nombre de factorisations d’un entier en produit ordonné de facteurs premiers, The Ramanujan Journal, Vol. 14, No. 2 (2007), pp. 277-304, alternative link.
EXAMPLE
See A260987.
MATHEMATICA
t = {1}~Join~Array[Multinomial @@ Last@ Transpose@ FactorInteger@ # &, 5*10^6, 2]; m = {1}; a = {1}; Do[If[t[[k]] > Max@ m, AppendTo[m, t[[k]]]; AppendTo[a, k]], {k, 2, Length@ t}]; a (* Michael De Vlieger, Nov 12 2015, after Olivier Gérard at A008480 *)
PROG
(Haskell)
a260633 n = a260633_list !! (n-1)
-- where a260633_list is defined in A260987.
-- Reinhard Zumkeller, Nov 18 2015
CROSSREFS
KEYWORD
nonn
AUTHOR
Gordon Hamilton, Nov 11 2015
EXTENSIONS
More terms from Michael De Vlieger, Nov 12 2015
STATUS
approved