login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A366785
Greatest common divisor of the number of prime factors (counted with multiplicity, A001222) and the greatest prime index (A061395) of n.
2
0, 1, 1, 1, 1, 2, 1, 1, 2, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 3, 2, 1, 1, 2, 1, 2, 1, 1, 1, 3, 1, 1, 1, 1, 2, 2, 1, 2, 2, 1, 1, 1, 1, 1, 3, 1, 1, 1, 2, 3, 1, 3, 1, 2, 1, 4, 2, 2, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, 1, 1, 3, 1, 1, 2, 1, 1, 4, 1, 2, 2, 1, 1, 1, 2, 3, 1, 1, 2, 2, 1, 1, 1, 1, 1, 1, 1, 2, 1
OFFSET
1,6
FORMULA
a(n) = gcd(A001222(n), A061395(n)).
For n >= 2, a(n) = A001222(n) / A360615(n) = A061395(n) / A360614(n).
PROG
(PARI)
A061395(n) = if(n>1, primepi(vecmax(factor(n)[, 1])), 0);
A366785(n) = gcd(bigomega(n), A061395(n));
CROSSREFS
Cf. A001222, A061395, A340608 (positions of 1's), A360614, A360615.
Sequence in context: A276630 A176048 A359141 * A322480 A251683 A354579
KEYWORD
nonn
AUTHOR
Antti Karttunen, Oct 23 2023
STATUS
approved