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!)
A328322 Maximal digit value used when A328316(n) is written in primorial base; maximal prime exponent in A328316(1+n). 7
0, 1, 1, 1, 1, 2, 3, 4, 7, 49, 430, 74814 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,6
LINKS
FORMULA
a(n) = A328114(A328316(n)).
a(n) = A051903(A328316(1+n)).
PROG
(PARI)
A276086(n) = { my(m=1, p=2); while(n, m *= (p^(n%p)); n = n\p; p = nextprime(1+p)); (m); };
A328316(n) = if(!n, 0, A276086(A328316(n-1)));
A328114(n) = { my(s=0, p=2); while(n, s = max(s, (n%p)); n = n\p; p = nextprime(1+p)); (s); };
\\ Or alternatively as, more slowly:
A051903(n) = if((1==n), 0, vecmax(factor(n)[, 2]));
A328322(n) = A051903(A328316(1+n));
CROSSREFS
Sequence in context: A070527 A158652 A127074 * A109617 A181881 A071373
KEYWORD
nonn
AUTHOR
Antti Karttunen, Oct 14 2019
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 July 4 21:03 EDT 2024. Contains 374017 sequences. (Running on oeis4.)