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.
%I A072499 #27 Dec 19 2023 13:41:43 %S A072499 1,1,1,2,1,2,1,2,3,2,1,6,1,2,3,8,1,6,1,8,3,2,1,24,5,2,3,8,1,30,1,8,3, %T A072499 2,5,144,1,2,3,40,1,36,1,8,15,2,1,144,7,10,3,8,1,36,5,56,3,2,1,720,1, %U A072499 2,21,64,5,36,1,8,3,70,1,1152,1,2,15,8,7,36,1,320,27,2,1,1008,5,2,3,64,1 %N A072499 Product of divisors of n which are <= n^(1/2). %C A072499 a(1) = 1 and a(24) = 24. For each pair of primes p,q such that p < q < p^2, if n = p^3*q, then a(n) = n. There are others as well; e.g., a(40) = 40. - _Don Reble_, Aug 02 2002 %C A072499 Row products of the table in A161906. - _Reinhard Zumkeller_, Mar 08 2013 %C A072499 It appears that the fixed points belong to 3 categories: p^6 (A030516), p^3*q, or p*q*r. - _Michel Marcus_, May 16 2014 %H A072499 Reinhard Zumkeller, <a href="/A072499/b072499.txt">Table of n, a(n) for n = 1..10000</a> %e A072499 a(20) = 8. The divisors of 20 are 1,2,4,5,10 and 20. a(20) = 1*2*4 = 8. %t A072499 a[n_] := Times @@ Select[Divisors[n], #^2 <= n &]; Array[a, 100] (* _Amiram Eldar_, Jul 31 2022 *) %o A072499 (Haskell) %o A072499 a072499 = product . a161906_row -- _Reinhard Zumkeller_, Mar 08 2013 %o A072499 (PARI) a(n) = my(d = divisors(n)); prod(i=1, #d, if (d[i]^2 <= n, d[i], 1)); \\ _Michel Marcus_, May 16 2014 %o A072499 (Python) %o A072499 from math import prod %o A072499 from itertools import takewhile %o A072499 from sympy import divisors %o A072499 def A072499(n): return prod(takewhile(lambda x:x**2<=n,divisors(n))) # _Chai Wah Wu_, Dec 19 2023 %Y A072499 Cf. A072500, A072501, A161906. %Y A072499 Cf. A072504, A066839. %K A072499 nonn %O A072499 1,4 %A A072499 _Amarnath Murthy_, Jul 20 2002 %E A072499 More terms from _Sascha Kurz_, Feb 02 2003