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 A348996 #9 Nov 08 2021 08:18:08 %S A348996 1,3,4,12,10,30,6,18,24,72,60,180,26,78,104,312,260,780,126,378,504, %T A348996 1512,1260,3780,626,1878,2504,7512,6260,18780,8,24,32,96,80,240,48, %U A348996 144,192,576,480,1440,208,624,832,2496,2080,6240,1008,3024,4032,12096,10080,30240,5008,15024,20032,60096,50080,150240,50,150 %N A348996 a(n) = usigma(A276086(n)), where usigma (A034448) is multiplicative with a(p^e) = (p^e)+1, and A276086 gives the prime product form of primorial base expansion of n. %H A348996 <a href="/index/Pri#primorialbase">Index entries for sequences related to primorial base</a> %F A348996 a(n) = A034448(A276086(n)). %o A348996 (PARI) A348996(n) = { my(m=1, p=2); while(n, if(n%p, m *= (1+(p^(n%p)))); n = n\p; p = nextprime(1+p)); (m); }; %Y A348996 Cf. A034448, A276086, A348997, A349000. %Y A348996 Cf. also A324653, A346470, A348949. %K A348996 nonn,base %O A348996 0,2 %A A348996 _Antti Karttunen_, Nov 07 2021