[go: up one dir, main page]

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!)
Search: a373256 -id:a373256
Displaying 1-3 of 3 results found. page 1
     Sort: relevance | references | number | modified | created      Format: long | short | data
A359430 a(n) = 1 if the arithmetic derivative of n is a multiple of 3, otherwise 0. +10
13
1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 1, 1, 0, 1, 0, 0, 1, 0, 0, 1, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
0
LINKS
FORMULA
a(n) = [A003415(n) == 0 (mod 3)], where [ ] is the Iverson bracket.
From Antti Karttunen, Jun 13 2024: (Start)
a(n) = A267142(n) + A369658(n) = A267142(n) + A011655(n)*A373371(n).
For n > 0, a(n) = [n == 0 (mod 9)] + [n != 0 (mod 3)]*[A373591(n) == A373592(n) (mod 3)].
a(n) = [0 == A373253(n)] = 1 - (A373254(n) + A373256(n)).
a(n) >= A369643(n).
a(n) >= A373143(n).
a(n) >= A370118(n).
(End)
PROG
(PARI)
A003415(n) = if(n<=1, 0, my(f=factor(n)); n*sum(i=1, #f~, f[i, 2]/f[i, 1]));
A359430(n) = !(A003415(n)%3);
(PARI) A359430(n) = if(!n, 1, if(!(n%3), !(n%9), my(f = factor(n), m1=0, m2=0); for(i=1, #f~, if(1==(f[i, 1]%3), m1 += f[i, 2], m2 += f[i, 2])); 0==((m1-m2)%3))); \\ Antti Karttunen, Jun 13 2024
CROSSREFS
Characteristic function of A327863.
Cf. also A369643, A369653 [= a(A276086(n))], A370118, A370122 [= a(A003415(n))], A373143.
KEYWORD
nonn
AUTHOR
Antti Karttunen, Jan 02 2023
STATUS
approved
A369653 a(n) = 1 if A327860(n) is a multiple of 3, otherwise 0, where A327860 is the arithmetic derivative of the primorial base exp-function. +10
9
1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
0
COMMENTS
Conjecture: asymptotic mean is 4/9: One third of the primorial base representations (A049345 from which the intermediate value x = A276086(n) is built from) have "2" as their second rightmost digit (out of 0, 1, 2). That 2 is converted by A276086 to 3^2, so as x is a multiple of nine, it is guaranteed that x' [= A003415(x)] gives a multiple of three. If the second rightmost digit is "1", then x = A276086(n) is a multiple of 3 (but not of 9), and its arithmetic derivative, x' = 3*(x/3)' + (x/3), certainly is not a multiple of 3. This leaves the case where the second rightmost digit is "0", and conjecturing now in this case that the modulo 3 remainders are eventually evenly distributed for x' (see A359430 and A373256), at least among the number of the form A048103, it gives in this case 1/3 * 1/3 = 1/9 probability that x' is a multiple of 3, so the total probability would be 1/3 + 0 + 1/9 = 4/9. Note that Sum_{i=1..10^n} a(i), for n = 1..8 gives: 3, 43, 443, 4443, 44443, 444443, 4444444, 44444444, so empirically the value 4/9 seems very sharp. - revised Jun 18 2024.
Compare also to A369034 and A373601.
LINKS
FORMULA
a(n) = A079978(A327860(n)) = A359430(A276086(n)).
If n == 0 or 1 (mod 6), a(n) = A373601(n), if n == 2 or 3 (mod 6), a(n) = 0, and if n == 4 or 5 (mod 6), a(n) = 1. - Antti Karttunen, Jun 18 2024
PROG
(PARI)
A327860(n) = { my(s=0, m=1, p=2, e); while(n, e = (n%p); m *= (p^e); s += (e/p); n = n\p; p = nextprime(1+p)); (s*m); };
A369653(n) = !(A327860(n)%3);
(PARI) A369653(n) = { my(p=2, c1=0, c2=0); while(n, if(3==p, if((n%p), return(2==(n%p))), if(1==(p%3), c1 += (n%p), if(2==(p%3), c2 += (n%p)))); n = n\p; p = nextprime(1+p)); 0==((c1-c2)%3); }; \\ Antti Karttunen, Jun 18 2024
CROSSREFS
Characteristic function of A369654.
KEYWORD
nonn
AUTHOR
Antti Karttunen, Jan 28 2024
STATUS
approved
A373257 Numbers k for which A003415(k) == -1 (mod 3), where A003415 is the arithmetic derivative. +10
3
6, 15, 16, 24, 28, 32, 33, 40, 42, 49, 51, 52, 56, 60, 69, 70, 76, 78, 80, 87, 88, 91, 96, 98, 100, 104, 105, 114, 123, 124, 130, 132, 133, 136, 140, 141, 148, 150, 152, 154, 159, 168, 169, 172, 175, 176, 177, 182, 184, 186, 190, 195, 200, 204, 213, 217, 220, 222, 231, 232, 238, 240, 244, 245, 247, 248, 249, 250, 258 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
PROG
(PARI) isA373257 = A373256;
CROSSREFS
Cf. A003415, A373256 (characteristic function).
Positions of -1's in A373253.
Nonnegative integers are partitioned between A327863, A373255, and this sequence.
KEYWORD
nonn
AUTHOR
Antti Karttunen, Jun 01 2024
STATUS
approved
page 1

Search completed in 0.082 seconds

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 August 29 15:03 EDT 2024. Contains 375517 sequences. (Running on oeis4.)