cp's OEIS Frontend

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.

A365387 a(n) = A331410(n) * A331410(A163511(n)).

This page as a plain text file.
%I A365387 #8 Sep 04 2023 16:39:31
%S A365387 0,0,1,0,4,1,2,0,6,4,8,1,6,2,3,0,12,6,18,4,10,8,4,1,16,6,9,2,8,3,2,0,
%T A365387 15,12,24,6,28,18,9,4,18,10,12,8,12,4,8,1,10,16,20,6,16,9,12,2,12,8,
%U A365387 16,3,6,2,6,0,24,15,40,12,27,24,12,6,40,28,25,18,12,9,18,4,28,18,18,10,25,12,25,8,20,12,18,4
%N A365387 a(n) = A331410(n) * A331410(A163511(n)).
%H A365387 Antti Karttunen, <a href="/A365387/b365387.txt">Table of n, a(n) for n = 1..65537</a>
%F A365387 a(n) = A331410(n) * A365385(n).
%o A365387 (PARI)
%o A365387 A163511(n) = if(!n, 1, my(p=2, t=1); while(n>1, if(!(n%2), (t*=p), p=nextprime(1+p)); n >>= 1); (t*p));
%o A365387 A331410(n) = if(!bitand(n,n-1),0,1+A331410(n+(n/vecmax(factor(n)[, 1]))));
%o A365387 A365387(n) = (A331410(n)*A331410(A163511(n)));
%Y A365387 Cf. A163511, A331410, A365385.
%Y A365387 Cf. also A334873.
%K A365387 nonn
%O A365387 1,5
%A A365387 _Antti Karttunen_, Sep 03 2023