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!)
A357332 2-adic valuation of A000793(n). 1
0, 1, 0, 2, 1, 1, 2, 0, 2, 1, 1, 2, 2, 2, 0, 2, 1, 1, 2, 2, 2, 2, 3, 3, 2, 2, 2, 1, 3, 2, 2, 2, 2, 3, 3, 2, 2, 2, 2, 3, 1, 3, 2, 2, 2, 2, 3, 3, 2, 2, 2, 2, 3, 3, 3, 3, 3, 1, 3, 2, 2, 2, 2, 3, 3, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 1, 4, 2, 2, 2, 2, 3, 3, 2, 2, 2, 2, 3, 3, 3 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
COMMENTS
Is it true that lim_{n->+oo} a(n) = +oo? It seems that the last occurrences of 0, 1, 2, 3, and 4 appear at indices 15, 77, 667, 4535, and 7520. More generally, is it true that lim_{n->+oo} v(A000793(n),p) = +oo for every prime p, where v(k,p) is the p-adic valuation of k?
LINKS
EXAMPLE
a(15) = 0 since A000793(15) = lcm(3,5,7) = 105 is odd.
a(77) = 1 since A000793(77) = lcm(2,3,5,7,11,13,17,19) = 9699690 is even but not divisible by 4.
PROG
(PARI) listn(N) = {
my(V = vector(N, n, 1));
forprime (i=2, N, \\ primes i
forstep (j=N, i, -1,
my( hi = V[j] );
my( pp = i ); \\ powers of prime i
while ( pp<=j, \\ V[] is 1-based
hi = max(if(j==pp, pp, V[j-pp]*pp), hi);
pp *= i;
);
V[j] = hi;
);
);
vector(N, n, valuation(V[n], 2));
} \\ copied from Joerg Arndt's code for A000793
CROSSREFS
Cf. A000793.
Sequence in context: A282634 A039980 A306660 * A347367 A194529 A055138
KEYWORD
nonn
AUTHOR
Jianing Song, Sep 24 2022
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 9 19:33 EDT 2024. Contains 372354 sequences. (Running on oeis4.)