login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A369010 Exponential of Mangoldt function M(n) applied to primorial base exp-function: a(n) = A014963(A276086(n)). 1
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, 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, 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 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Also LCM-transform of A276086, because A276086 has the S-property explained in the comments of A368900.
LINKS
FORMULA
a(n) = A014963(A276086(n)).
For n > 0, a(n) = lcm {1..A276086(n)} / lcm {1..A276086(n-1)}.
PROG
(PARI)
A014963(n) = { ispower(n, , &n); if(isprime(n), n, 1); };
A276086(n) = { my(m=1, p=2); while(n, m *= (p^(n%p)); n = n\p; p = nextprime(1+p)); (m); };
(PARI)
up_to = 510511; \\ = 1+A002110(7);
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); };
v369010 = LCMtransform(vector(up_to, n, A276086(n-1)));
A369010(n) = v369010[1+n];
CROSSREFS
Cf. A014963, A060735 (positions of terms > 1), A276086, A368900.
Sequence in context: A023678 A128222 A057039 * A260449 A135511 A007413
KEYWORD
nonn
AUTHOR
Antti Karttunen, Jan 14 2024
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 5 23:49 EDT 2024. Contains 372290 sequences. (Running on oeis4.)