OFFSET
1,1
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 1..20000
Dario Alpern, Brilliant Numbers
EXAMPLE
See A239585.
MATHEMATICA
Table[With[{f = FactorInteger[k]}, If[Total[f[[All, 2]]] == 2 && Length[Union[IntegerLength[f[[All, 1]]]]] == 1, f[[-1, 1]], Nothing]], {k, 1000}] (* Paolo Xausa, Oct 02 2024 *)
dlist2[d_] := Union[Times @@@ Tuples[Prime[Range[PrimePi[10^(d-1)] + 1, PrimePi[10^d]]], 2]]; (* Generates terms with d-digits prime factors -- faster but memory intensive *)
Map[FactorInteger[#][[-1, 1]]&, Flatten[Array[dlist2, 2]]] (* Paolo Xausa, Oct 08 2024 *)
PROG
(Haskell)
a239586 n = a078972 n `div` a239585 n
CROSSREFS
KEYWORD
AUTHOR
Reinhard Zumkeller, Mar 22 2014
STATUS
approved