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.

Showing 1-4 of 4 results.

A327860 Arithmetic derivative of the primorial base exp-function: a(n) = A003415(A276086(n)).

Original entry on oeis.org

0, 1, 1, 5, 6, 21, 1, 7, 8, 31, 39, 123, 10, 45, 55, 185, 240, 705, 75, 275, 350, 1075, 1425, 3975, 500, 1625, 2125, 6125, 8250, 22125, 1, 9, 10, 41, 51, 165, 12, 59, 71, 247, 318, 951, 95, 365, 460, 1445, 1905, 5385, 650, 2175, 2825, 8275, 11100, 30075, 4125, 12625, 16750, 46625, 63375, 166125, 14, 77, 91, 329, 420
Offset: 0

Views

Author

Antti Karttunen, Sep 30 2019

Keywords

Comments

Are there any other fixed points after 0, 1, 7, 8 and 2556? (A328110, see also A351087 and A351088).
Out of the 30030 initial terms, 19220 are multiples of 5. (See A327865).
Proof that a(n) is even if and only if n is a multiple of 4: Consider Charlie Neder's Feb 25 2019 comment in A235992. As A276086 is never a multiple of 4, and as it toggles the parity, we only need to know when A001222(A276086(n)) = A276150(n) is even. The condition for that is given in the latter sequence by David A. Corneth's Feb 27 2019 comment. From this it also follows that A166486 gives similarly the parity of terms of A342002, A351083 and A345000. See also comment in A327858. - Antti Karttunen, May 01 2022

Examples

			2556 has primorial base expansion [1,1,1,1,0,0] as 1*A002110(5) + 1*A002110(4) + 1*A002110(3) + 1*A002110(2) = 2310 + 210 + 30 + 6 = 2556. That in turn is converted by A276086 to 13^1 * 11^1 * 7^1 * 5^1 = 5005, whose arithmetic derivative is 5' * 1001 + 1001' * 5 = 1*1001 + 311*5 = 2556, thus 2556 is one of the rare fixed points (A328110) of this sequence.
		

Crossrefs

Cf. A002110 (positions of 1's), A003415, A048103, A276086, A327858, A327859, A327865, A328110 (fixed points), A328233 (positions of primes), A328242 (positions of squarefree terms), A328388, A328392, A328571, A328572, A329031, A329032, A329041, A342002.
Cf. A345000, A351074, A351075, A351076, A351077, A351080, A351083, A351084, A351087 (numbers k such that a(k) is a multiple of k), A351088.
Coincides with A329029 on positions given by A276156.
Cf. A166486 (a(n) mod 2), A353630 (a(n) mod 4).
Cf. A267263, A276150, A324650, A324653, A324655 for omega, bigomega, phi, sigma and tau applied to A276086(n).
Cf. also A351950 (analogous sequence).

Programs

  • Mathematica
    Block[{b = MixedRadix[Reverse@ Prime@ Range@ 12]}, Array[Function[k, If[# < 2, 0, # Total[#2/#1 & @@@ FactorInteger[#]] ] &@ Abs[Times @@ Power @@@ # &@ Transpose@{Prime@ Range@ Length@ k, Reverse@ k}]]@ IntegerDigits[#, b] &, 65, 0]] (* Michael De Vlieger, Mar 12 2021 *)
  • PARI
    A003415(n) = {my(fac); if(n<1, 0, fac=factor(n); sum(i=1, matsize(fac)[1], n*fac[i, 2]/fac[i, 1]))}; \\ From A003415
    A276086(n) = { my(i=0,m=1,pr=1,nextpr); while((n>0),i=i+1; nextpr = prime(i)*pr; if((n%nextpr),m*=(prime(i)^((n%nextpr)/pr));n-=(n%nextpr));pr=nextpr); m; };
    A327860(n) = A003415(A276086(n));
    
  • 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); }; \\ (Standalone version) - Antti Karttunen, Nov 07 2019

Formula

a(n) = A003415(A276086(n)).
a(A002110(n)) = 1 for all n >= 0.
From Antti Karttunen, Nov 03 2019: (Start)
Whenever A329041(x,y) = 1, a(x + y) = A003415(A276086(x)*A276086(y)) = a(x)*A276086(y) + a(y)*A276086(x). For example, we have:
a(n) = a(A328841(n)+A328842(n)) = A329031(n)*A328572(n) + A329032(n)*A328571(n).
A051903(a(n)) = A328391(n).
A328114(a(n)) = A328392(n).
(End)
From Antti Karttunen, May 01 2022: (Start)
a(n) = A328572(n) * A342002(n).
For all n >= 0, A000035(a(n)) = A166486(n). [See comments]
(End)

Extensions

Verbal description added to the definition by Antti Karttunen, May 01 2022

A328110 Fixed points of A327860: numbers k for which A003415(A276086(k)) = k, where A003415 is the arithmetic derivative, and A276086 is the primorial base exp-function.

Original entry on oeis.org

0, 1, 7, 8, 2556
Offset: 1

Views

Author

Antti Karttunen, Oct 08 2019

Keywords

Comments

Applying A276086 to these terms gives the fixed points of A327859: 1, 2, 10, 15, 5005, ..., i.e., A369650 without any of the terms of A100716.
No more terms below <= 2550136832.
From Antti Karttunen, Feb 09 2024: (Start)
The known five terms are all members of A276156, which is equal to the claim that the intersection of A048103 and A369650 is squarefree. See the example, and also comments in A351088 and in A380527.
Even terms here must be multiples of 4, see comment in A327860.
No terms of A047257 may occur in this sequence, which is equal to the claim that A276086(a(n)) is never a multiple of 9. See comment in A327859.
(End)

Examples

			Computing A327860(2556) is easy, because it is a member of A276156, as 2556 = 6 + 30 + 210 + 2310. Therefore A327860(2556) = A003415(5*7*11*13) = (5*7*11) + (5*7*13) + (5*11*13) + (7*11*13) = 2556, and 2556 is included in this sequence. - _Antti Karttunen_, Feb 04 2024
		

Crossrefs

After 0, the intersection of A351087 and A380527, thus like the latter, also this is conjectured to be a subsequence of A276156.
After two initial terms (0 & 1), a subsequence of A328118. Subsequence of A351088.

Programs

  • 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); };
    isA328110(n) = (A327860(n) == n);

A351083 a(n) = gcd(n, A003415(A276086(n))), where A003415 is the arithmetic derivative and A276086 is the primorial base exp-function.

Original entry on oeis.org

0, 1, 1, 1, 2, 1, 1, 7, 8, 1, 1, 1, 2, 1, 1, 5, 16, 1, 3, 1, 10, 1, 1, 1, 4, 25, 1, 1, 2, 1, 1, 1, 2, 1, 17, 5, 12, 1, 1, 13, 2, 1, 1, 1, 4, 5, 1, 1, 2, 1, 25, 1, 4, 1, 3, 5, 2, 1, 1, 1, 2, 1, 1, 7, 4, 1, 1, 1, 2, 1, 7, 1, 24, 1, 1, 5, 2, 7, 1, 1, 80, 1, 1, 1, 14, 5, 1, 1, 8, 1, 3, 91, 4, 1, 1, 1, 2, 1, 49, 1, 4
Offset: 0

Views

Author

Antti Karttunen, Feb 03 2022

Keywords

Crossrefs

Cf. A003415, A276086, A324198, A327860, A328572, A351080, A351084, A351087 (fixed points), A354823 (Dirichlet inverse), A373145, A373599 (indices of multiples of 3 in this sequence).
Cf. A166486 (a(n) mod 2, parity of terms, see comment in A327860).
Cf. also A345000.

Programs

  • Mathematica
    Array[Block[{i, m, n = #, p}, m = i = 1; While[n > 0, p = Prime[i]; m *= p^Mod[n, p]; n = Quotient[n, p]; i++]; GCD[#, If[m < 2, 0, m Total[#2/#1 & @@@ FactorInteger[m]]]]] &, 101, 0] (* Michael De Vlieger, Feb 04 2022 *)
  • 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); };
    A351083(n) = gcd(n, A327860(n));

Formula

a(n) = gcd(n, A327860(n)) = gcd(n, A003415(A276086(n))).
a(n) = A373145(A276086(n)). - Antti Karttunen, Jun 18 2024

A380527 Numbers k such that k is a multiple of A327860(k), where A327860 is the arithmetic derivative of the primorial base exp-function.

Original entry on oeis.org

1, 2, 6, 7, 8, 30, 36, 210, 2310, 2340, 2520, 2556, 30030, 30240, 32340, 510510, 510720, 540540, 9699690, 9699720, 9702000, 9729720, 10210200, 223092870, 223092900, 223093080, 223095180, 232792560, 6469693230, 6469693236, 6469693440, 6469695540, 6692786100
Offset: 1

Views

Author

Antti Karttunen, Feb 11 2025

Keywords

Comments

It is conjectured that only terms of A276156 occur here. If any term of A177711 is included, then it must be one of the terms of A381037.
a(34) > A143293(10).

Crossrefs

Subsequence of A381035. Conjectured to be a subsequence of A276156.
Subsequences: A002110, A328110.
Cf. also A177711, A351087, A381037.

Programs

  • 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); };
    is_A380527(n) = !(n%A327860(n));
Showing 1-4 of 4 results.