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.

A369010 Exponential of Mangoldt function M(n) applied to primorial base exp-function: a(n) = A014963(A276086(n)).

This page as a plain text file.
%I A369010 #10 Jan 14 2024 12:37:52
%S A369010 1,2,3,1,3,1,5,1,1,1,1,1,5,1,1,1,1,1,5,1,1,1,1,1,5,1,1,1,1,1,7,1,1,1,
%T A369010 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,7,1,1,1,1,1,1,1,
%U A369010 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,7,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
%N A369010 Exponential of Mangoldt function M(n) applied to primorial base exp-function: a(n) = A014963(A276086(n)).
%C A369010 Also LCM-transform of A276086, because A276086 has the S-property explained in the comments of A368900.
%H A369010 Antti Karttunen, <a href="/A369010/b369010.txt">Table of n, a(n) for n = 0..30030</a>
%H A369010 <a href="/index/Pri#primorialbase">Index entries for sequences related to primorial base</a>
%F A369010 a(n) = A014963(A276086(n)).
%F A369010 For n > 0, a(n) = lcm {1..A276086(n)} / lcm {1..A276086(n-1)}.
%o A369010 (PARI)
%o A369010 A014963(n) = { ispower(n, , &n); if(isprime(n), n, 1); };
%o A369010 A276086(n) = { my(m=1, p=2); while(n, m *= (p^(n%p)); n = n\p; p = nextprime(1+p)); (m); };
%o A369010 A369010(n) = A014963(A276086(n));
%o A369010 (PARI)
%o A369010 up_to = 510511; \\ = 1+A002110(7);
%o A369010 LCMtransform(v) = { my(len = length(v), b = vector(len), g = vector(len)); b[1] = g[1] = 1; for(n=2,len, g[n] = lcm(g[n-1],v[n]); b[n] = g[n]/g[n-1]); (b); };
%o A369010 v369010 = LCMtransform(vector(up_to,n,A276086(n-1)));
%o A369010 A369010(n) = v369010[1+n];
%Y A369010 Cf. A014963, A060735 (positions of terms > 1), A276086, A368900.
%K A369010 nonn
%O A369010 0,2
%A A369010 _Antti Karttunen_, Jan 14 2024