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-5 of 5 results.

A328234 Numbers whose arithmetic derivative (A003415) is a squarefree number (A005117) > 1.

Original entry on oeis.org

6, 9, 10, 18, 21, 22, 25, 26, 30, 33, 34, 38, 42, 45, 49, 57, 58, 62, 63, 66, 69, 70, 74, 75, 78, 82, 85, 90, 93, 98, 102, 105, 106, 110, 114, 117, 118, 121, 126, 129, 130, 133, 134, 142, 145, 147, 150, 153, 154, 161, 165, 166, 169, 170, 171, 174, 175, 177, 178, 182, 185, 186, 190, 195, 198, 201, 202, 205, 206, 209, 210, 213
Offset: 1

Views

Author

Antti Karttunen, Oct 10 2019

Keywords

Comments

Sequence A328393 without primes.
No multiples of 4 because this is a subsequence of A048103.
All terms are cubefree, but being a cubefree non-multiple of 4 doesn't guarantee a membership, as for example 99 = 3^2 * 11 has an arithmetic derivative 11*(2*3) + 3^2 = 75 = 5^2 * 3, and thus is not included in this sequence. (See e.g., A328305).

Crossrefs

Cf. A328252 (nonsquarefree terms), A157037, A192192, A327978 (other subsequences).
Subsequence of following sequences: A004709, A048103, A328393.
Complement of the union of A000040 and A328303, i.e., complement of A328303, but without primes.
Cf. also A328248, A328250, A328305.

Programs

  • Mathematica
    arthD[n_]:=Module[{fi=FactorInteger[n]},n Total[(fi[[;;,2]]/fi[[;;,1]])]]; Select[Range[300],arthD[#]>1&&SquareFreeQ[arthD[#]]&] (* Harvey P. Dale, Dec 01 2024 *)
  • PARI
    A003415(n) = if(n<=1, 0, my(f=factor(n)); n*sum(i=1, #f~, f[i, 2]/f[i, 1]));
    isA328234(n) = { my(u=A003415(n)); (u>1 && issquarefree(u)); };

A328321 Numbers n for which A328311(n) = 1 + A051903(A003415(n)) - A051903(n) is strictly positive.

Original entry on oeis.org

4, 6, 10, 12, 14, 15, 16, 20, 21, 22, 26, 27, 28, 30, 33, 34, 35, 36, 38, 39, 42, 44, 46, 48, 50, 51, 52, 54, 55, 57, 58, 60, 62, 64, 65, 66, 68, 69, 70, 74, 76, 77, 78, 80, 82, 84, 85, 86, 87, 91, 92, 93, 94, 95, 99, 100, 102, 105, 106, 108, 110, 111, 112, 114, 115, 116, 118, 119, 122, 123, 124, 129, 130, 132, 133
Offset: 1

Views

Author

Antti Karttunen, Oct 13 2019

Keywords

Comments

Numbers n for which A051903(A003415(n)) >= A051903(n), i.e., numbers such that taking their arithmetic derivative does not decrease their "degree", A051903, the maximal exponent in prime factorization.

Examples

			10 = 2*5 has maximal exponent (A051903) 1, and its arithmetic derivative A003415(10) = 2+5 = 7 also has maximal exponent 1, thus 10 is included in this sequence.
15 = 3*5 has maximal exponent 1, and its arithmetic derivative A003415(15) = 3+5 = 8 = 2^3 has maximal exponent 3, thus 15 is included in this sequence.
For 8 = 2^3, its arithmetic derivative A003415(8) = 12 = 2^2 * 3, and as 2 < 3 (highest exponent of 12 is less than that of 8), 8 is NOT included here, and from this we also see that A100716 is not a subsequence of this sequence.
		

Crossrefs

Cf. A328320 (complement), A051674, A157037, A328304, A328305 (subsequences).

Programs

A328303 Numbers whose arithmetic derivative is not squarefree.

Original entry on oeis.org

0, 1, 4, 8, 12, 14, 15, 16, 20, 24, 27, 28, 32, 35, 36, 39, 40, 44, 46, 48, 50, 51, 52, 54, 55, 56, 60, 64, 65, 68, 72, 76, 77, 80, 81, 84, 86, 87, 88, 91, 92, 94, 95, 96, 99, 100, 104, 108, 111, 112, 115, 116, 119, 120, 122, 123, 124, 125, 128, 132, 135, 136, 138, 140, 141, 143, 144, 146, 148, 152, 155, 156, 158, 159, 160, 162, 164, 168, 172, 176, 180, 183, 184, 187, 188, 189, 192, 194, 196, 200
Offset: 1

Views

Author

Antti Karttunen, Oct 13 2019

Keywords

Comments

Numbers n for which either A003415(n) = 0 or A051903(A003415(n)) > 1.

Examples

			Arithmetic derivative of 1 is A003415(1) = 0, which is not a squarefree number (not in A005117), thus 1 is included in this sequence. Ditto for 0, as A003415(0) = 0.
Arithmetic derivative of 8 is A003415(8) = 12 = 2^2 * 3, which is not squarefree, thus 8 is included in this sequence.
Arithmetic derivative of 15 is A003415(15) = 8 = 2^3, which is not squarefree, thus 15 is included in this sequence.
		

Crossrefs

Complement of the union of A000040 and A328234.
Cf. A328245, A328251, A328253, A328304, A328305 (subsequences).

Programs

  • PARI
    A003415(n) = if(n<=1, 0, my(f=factor(n)); n*sum(i=1, #f~, f[i, 2]/f[i, 1]));
    isA328303(n) = !issquarefree(A003415(n));

A328304 Numbers that are cubefree, but not squarefree and whose arithmetic derivative is not squarefree.

Original entry on oeis.org

4, 12, 20, 28, 36, 44, 50, 52, 60, 68, 76, 84, 92, 99, 100, 116, 124, 132, 140, 148, 156, 164, 172, 180, 188, 196, 204, 207, 212, 220, 225, 228, 236, 244, 252, 260, 268, 275, 276, 284, 292, 300, 306, 308, 316, 332, 340, 348, 356, 364, 372, 380, 388, 396, 404, 412, 420, 428, 436, 441, 444, 452, 460, 468, 476, 484, 492, 508, 516, 524, 525
Offset: 1

Views

Author

Antti Karttunen, Oct 13 2019

Keywords

Comments

Numbers n for which A051903(n) = 2 and A051903(A003415(n)) > 1.

Examples

			4 = 2^2 is cubefree but not squarefree, and its arithmetic derivative A003415(4) = 4 is not squarefree, thus 4 is included in this sequence.
225 = 3^2 * 5^2 is cubefree but not squarefree, and its arithmetic derivative A003415(225) = 240 = 2^4 * 3 * 5 is not squarefree, thus 225 is included in this sequence.
		

Crossrefs

Intersection of A067259 and A328303. Intersection of A067259 and A328321.
Cf. A328305 (a subsequence).

Programs

A328385 If n is of the form p^p, a(n) = n, otherwise a(n) is the first number found by iterating the map x -> A003415(x) that is different from n and either a prime, or whose degree (A051903) differs from the degree of n.

Original entry on oeis.org

0, 1, 1, 4, 1, 5, 1, 12, 6, 7, 1, 16, 1, 9, 8, 32, 1, 21, 1, 24, 7, 13, 1, 44, 10, 8, 27, 32, 1, 31, 1, 80, 9, 19, 12, 96, 1, 7, 16, 68, 1, 41, 1, 48, 39, 25, 1, 608, 14, 39, 20, 56, 1, 81, 16, 92, 13, 31, 1, 96, 1, 9, 51, 640, 18, 61, 1, 72, 8, 59, 1, 156, 1, 16, 55, 80, 18, 71, 1, 3424, 108, 43, 1, 128, 13, 45, 32, 140, 1, 123, 20, 96, 19
Offset: 1

Views

Author

Antti Karttunen, Oct 14 2019

Keywords

Examples

			For n = 3, 3 is a prime, thus a(3) = 1.
For n = 4, A003415(4) = 4, thus as it is among the fixed points of A003415 and a(4) = 4.
For n = 8 = 2^3, its "degree" is A051903(33) = 3, but A003415(8) = 12 = 2^2 * 3, with degree 2, thus a(8) = 12.
For n = 21 = 3*7, A051903(21) = 1, the first derivative A003415(21) = 10 = 2*5 is of the same degree as A051903(10) = 1, but then continuing, we have A003415(10) = 7, which is a prime, thus a(21) = 7.
For n = 33 = 3*11, A051903(33) = 1, A003415(33) = 14 = 2*7, is of the same degree, but on the second iteration, A003415(14) = 9 = 3^2, with A051903(9) = 2, different from the initial degree, thus a(33) = 9.
		

Crossrefs

Cf. A328384 (the number of iterations needed to reach such a number).

Programs

  • PARI
    A003415(n) = if(n<=1, 0, my(f=factor(n)); n*sum(i=1, #f~, f[i, 2]/f[i, 1]));
    A051903(n) = if((1==n),0,vecmax(factor(n)[, 2]));
    A328385(n) = { my(d=A051903(n), u=A003415(n)); while(u && (u!=n) && !isprime(u) && A051903(u)==d, n = u; u = A003415(u)); (u); };

Formula

a(1) = 0 [as here the degrees of 0 and 1 are considered different].
a(p) = 1 for all primes.
a(A051674(n)) = A051674(n).
a(A157037(n)) = A003415(A157037(n)), a prime.
a(A328252(n)) = A003415(A328252(n)), a squarefree number.
a(n) = A003415^(k)(n), when k = abs(A328384(n)). [Taking the abs(A328384(n))-th arithmetic derivative of n gives a(n)]
Showing 1-5 of 5 results.