This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A374112 #6 Jun 29 2024 09:33:25 %S A374112 0,1,2,2,1,3,1,3,4,1,1,4,1,1,1,4,1,5,1,1,1,1,1,5,2,1,6,1,1,1,1,5,1,1, %T A374112 18,6,1,1,1,1,1,1,1,1,1,1,1,6,2,1,1,1,1,7,2,1,1,1,1,1,1,1,17,6,2,1,1, %U A374112 1,1,1,1,7,1,1,2,1,6,1,1,1,8,1,1,17,6,1,1,1,1,1,6,1,1,1,2,7,1,1,1,2,1,1,1,1,2 %N A374112 a(n) = gcd(A113177(n), A276085(n)), where A113177 and A276085 are fully additive with a(p) = Fibonacci(p) and a(p) = p#/p, respectively. %H A374112 Antti Karttunen, <a href="/A374112/b374112.txt">Table of n, a(n) for n = 1..65537</a> %o A374112 (PARI) %o A374112 A113177(n) = if(n<=1, 0, my(f=factor(n)); sum(i=1, #f~, f[i, 2]*fibonacci(f[i,1]))); %o A374112 A276085(n) = { my(f=factor(n)); sum(k=1, #f~, f[k, 2]*prod(i=1,primepi(f[k, 1]-1),prime(i))); }; %o A374112 A374112(n) = gcd(A113177(n), A276085(n)); %Y A374112 Cf. A113177, A276085, A374113, A374114 (indices of even terms), A374115 (of odd terms). %Y A374112 Cf. also A374116. %K A374112 nonn %O A374112 1,3 %A A374112 _Antti Karttunen_, Jun 29 2024