A334421 a(n) is the smallest number m with n divisors d such that sigma(d)/tau(d) is an integer for all divisors d.
1, 3, 49, 15, 923521, 147, 88245939632761, 105, 8281, 2770563, 4345096786921664259621718196367601, 735, 9024585590445680759701490904755712009585829774768244676951841, 264737818898283, 45252529, 1155
Offset: 1
Keywords
Examples
a(4) = 15 because number 15 with divisors 1, 3, 5 and 15 is the smallest number with 4 such divisors: sigma(1)/tau(1) = 1/1 = 1, sigma(3)/tau(3) = 4/2 = 2, sigma(5)/tau(5) = 6/2 = 3, sigma(15)/tau(15) = 24/4 = 6.
Programs
-
Magma
[Min([m: m in[1..1000] | &+[&+Divisors(d) mod #Divisors(d): d in Divisors(m)] eq 0 and #Divisors(m) eq k]): k in [1..4]]
Extensions
a(13)-a(14) from Amiram Eldar, May 02 2020
Comments