login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A112764
Greatest prime factor of the n-th 5-smooth number.
4
1, 2, 3, 2, 5, 3, 2, 3, 5, 3, 5, 2, 3, 5, 3, 5, 3, 5, 2, 3, 5, 5, 3, 5, 3, 5, 2, 3, 5, 5, 3, 5, 3, 5, 3, 5, 5, 2, 5, 3, 5, 5, 3, 5, 3, 5, 3, 5, 5, 3, 5, 2, 5, 3, 5, 5, 3, 5, 5, 3, 5, 5, 3, 5, 5, 3, 5, 2, 5, 3, 5, 5, 5, 3, 5, 5, 3, 5, 3, 5, 5, 3, 5, 5, 3, 5, 2, 5, 5, 3, 5, 5, 5, 5, 3, 5, 5, 3, 5, 3, 5, 5, 3, 5, 5
OFFSET
1,2
LINKS
FORMULA
a(n) = A006530(A051037(n));
A112763(n) <= a(n) <= 5.
MATHEMATICA
Reap[Do[p = FactorInteger[n][[-1, 1]]; If[p < 7, Sow[p]], {n, 1, 2000}] ][[2, 1]] (* Jean-François Alcover, Dec 17 2017 *)
PROG
(Magma) [1] cat [Max(PrimeDivisors(k)): k in [2..1500]| PrimeDivisors(k) subset [2, 3, 5]]; // Marius A. Burtea, Feb 07 2020
CROSSREFS
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Sep 18 2005
STATUS
approved