A318251 Lesser of amicable numbers pair (m, n) such that n = H(m) and m = H(n) where H(n) = A074206(n) is the number of ordered factorizations of n.
6144, 19329024, 939524096, 4026531840, 309237645312, 6146186280960, 52158082842624, 29273397577908224
Offset: 1
Examples
6144 is in the sequence since A074206(6144) = 13312 and A074206(13312) = 6144.
Programs
-
PARI
f(n) = if( n<2, n>0, my(A = divisors(n)); sum(k=1, #A-1, f(A[k]))); isok(n)={my(a=f(n)); a>n && f(a)==n;} \\ Michel Marcus, Sep 26 2018
Comments