A331813 a(n) is the least k > 1 such that k*A019278(n) belongs to A019278 too, or a(n) = 0 if no such k exists.
2, 2, 2, 2, 4, 4, 2, 7, 2, 4, 8, 2, 3, 2, 2, 4, 2, 64, 3, 64, 4, 8, 7, 4, 15, 3, 50, 2, 2, 50, 2, 7, 29184, 2, 16, 64, 4, 16, 4, 385, 15, 9, 313600, 2, 4, 2793, 4199, 2, 4, 57600
Offset: 1
Examples
With A019278 starting as 1, 2, 4, 8, 15, 16, 21, 24, 42, 60, 64, ... one gets the proper multiples 2, 4, 8, 16, 60, 64, ... and so the sequence begins: 2, 2, 2, 2, 4, 4, ...
Crossrefs
Cf. A019278 (integers m such that sigma(sigma(m))/m is an integer).
Programs
-
PARI
a(n, v019278) = my(m = v019278[n]); my(k=2, y = k*m); while (denominator(sigma(sigma(y))/y) != 1, k++; y += m); k;
Comments