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

A327862 Numbers whose arithmetic derivative is of the form 4k+2, cf. A003415.

Original entry on oeis.org

9, 21, 25, 33, 49, 57, 65, 69, 77, 85, 93, 121, 129, 133, 135, 141, 145, 161, 169, 177, 185, 201, 205, 209, 213, 217, 221, 237, 249, 253, 265, 289, 301, 305, 309, 315, 321, 329, 341, 351, 361, 365, 375, 377, 381, 393, 413, 417, 437, 445, 453, 459, 469, 473, 481, 485, 489, 493, 495, 497, 501, 505, 517, 529, 533, 537
Offset: 1

Views

Author

Antti Karttunen, Sep 30 2019

Keywords

Comments

All terms are odd because the terms A068719 are either multiples of 4 or odd numbers.
Odd numbers k for which A064989(k) is one of the terms of A358762. - Antti Karttunen, Nov 30 2022
The second arithmetic derivative (A068346) of these numbers is odd. See A235991. - Antti Karttunen, Feb 06 2024

Crossrefs

Setwise difference A235992 \ A327864.
Setwise difference A046337 \ A360110.
Union of A369661 (k' has an even number of prime factors) and A369662 (k' has an odd number of prime factors).
Subsequences: A001248 (from its second term onward), A108181, A327978, A366890 (when sorted into ascending order), A368696, A368697.
Cf. A003415, A064989, A068346, A068719, A327863, A327865, A353495 (characteristic function).

Programs

  • 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
    isA327862(n) = (2==(A003415(n)%4));
    k=1; n=0; while(k<105, if(isA327862(n), print1(n, ", "); k++); n++);

A327978 Numbers whose arithmetic derivative (A003415) is a primorial number (A002110) > 1.

Original entry on oeis.org

9, 161, 209, 221, 2189, 2561, 3281, 3629, 5249, 5549, 6401, 7181, 7661, 8321, 8909, 9089, 9869, 10001, 10349, 10541, 10961, 11009, 11021, 29861, 38981, 52601, 66149, 84101, 93029, 97481, 132809, 150281, 158969, 163301, 197669, 214661, 227321, 235721, 285449, 321989, 338021, 357881, 369701, 381449, 385349, 416261, 420089, 442889
Offset: 1

Views

Author

Antti Karttunen, Oct 09 2019

Keywords

Comments

Numbers n such that A327859(n) = A276086(A003415(n)) is an odd prime.
Composite terms in A328232.
Although it first might seem that the numbers whose arithmetic derivative is A002110(k) all appear before any of those whose arithmetic derivative is A002110(k+1), that is not true, as for example, we have a(56) = 570149, and A003415(570149) = 2310, a(57) = 570209, and A003415(570209) = 30030, but then a(58) = 573641 with A003415(573641) = 2310 again.
Because this is a subsequence of A327862 (all primorials > 1 are of the form 4k+2), only odd numbers are present.
Conjecture: No multiples of 5 occur in this sequence, and no multiples of 3 after the initial 9.
Of the first 10000 terms, all others are semiprimes (with 9 the only square one), except 1547371 = 7^2 * 23 * 1373 and 79332523 = 17^2 * 277 * 991, the latter being the only known term whose decimal expansion ends with 3. If all solutions were semiprimes p*q such that p+q = A002110(k) for some k > 1 (see A002375), it would be a sufficient reason for the above conjecture to hold. - David A. Corneth and Antti Karttunen, Oct 11 2019
In any case, the solutions have to be of the form "odd numbers with an even number of prime factors with multiplicity" (see A235992), and terms must also be cubefree (A004709), as otherwise the arithmetic derivative would not be squarefree.
Sequence A366890 gives the non-Goldbachian solutions, i.e., numbers that are not semiprimes. See also A368702. - Antti Karttunen, Jan 17 2024

Crossrefs

Cf. A351029 (number of k for which k' = A002110(n)).
Cf. A368703, A368704 (the least and the greatest k for which k' = A002110(n)).
Cf. A366890 (terms that are not semiprimes), A368702 (numbers k such that k' is one of the terms of this sequence).
Subsequence of following sequences: A004709, A189553, A327862, A328232, A328234.

Programs

  • Mathematica
    ad[n_] := n * Total @ (Last[#]/First[#] & /@ FactorInteger[n]); primQ[n_] := Max[(f = FactorInteger[n])[[;;,2]]] == 1 && PrimePi[f[[-1,1]]] == Length[f]; Select[Range[10^4], primQ[ad[#]] &] (* Amiram Eldar, Oct 11 2019 *)
  • PARI
    A002620(n) = ((n^2)>>2);
    A003415(n) = if(n<=1, 0, my(f=factor(n)); n*sum(i=1, #f~, f[i, 2]/f[i, 1]));
    A276150(n) = { my(s=0, p=2, d); while(n, d = (n%p); s += d; n = (n-d)/p; p = nextprime(1+p)); (s); };
    isA327978flat(n) = { my(u=A003415(n)); ((u>1)&&(1==A276150(u))); }; \\ Slow!
    k=0; for(n=1,A002620(30030),if(isA327978flat(n), k++; write("b327978.txt", k, " ", n)));

Formula

A327969(a(n)) = 4 for all n.

A351029 Number of integers whose arithmetic derivative is equal to the n-th primorial.

Original entry on oeis.org

0, 1, 3, 19, 114, 905, 9494, 124181, 2044847, 43755729, 1043468388, 30309948250
Offset: 1

Views

Author

Antti Karttunen, Feb 01 2022

Keywords

Comments

Number of integers k such that A003415(k) = A002110(n).
a(7) = A116979(7) + 1 since 1547371'=510510 and 1547371=7^2*23*1373 and every other example has only two prime factors. a(8) > A116979(8) because there is at least one term k in A327978 for which A003415(k) = 9699690 = A002110(8), which is not semiprime, that k being 79332523 = 17^2 * 277 * 991. - Edited by Craig J. Beisel, Sep 13 2022 and Antti Karttunen, Jan 05 2023
Most such k are semiprimes, i.e., are "Goldbachian solutions", counted by A116979. The non-semiprime solutions (A366890) form a very tiny minority, and are counted by A369000. - Antti Karttunen, Jan 19 2024

Examples

			a(1) = 0 because there are no such k that A003415(k) = 2 = A002110(1).
a(2) = 1 because there is only one number, 9, such that A003415(9) = A002110(2) = 6.
a(3) = 3 because there are exactly three numbers, k = 161, 209, 221, for which A003415(k) = A002110(3) = 30. (See A327978). These are all semiprime solutions, generated by the partitions of 30 into 2 primes: 30 = 7 + 23 = 11 + 19 = 13 + 17, and we have 7*23 = 161; 11*19 = 209; 13*17 = 221.
		

Crossrefs

Cf. A002110, A002620, A003415, A099302, A099303, A116979, A327978, A366890 (nonsemiprime solutions), A368703 (the least of solutions), A368704 (the largest of solutions), A369000.
Cf. also A369239.

Programs

  • PARI
    A002110(n) = prod(i=1,n,prime(i));
    A002620(n) = ((n^2)>>2);
    A003415(n) = if(n<=1, 0, my(f=factor(n)); n*sum(i=1, #f~, f[i, 2]/f[i, 1]));
    A351029(n) = { my(g=A002110(n)); sum(k=1,A002620(g),A003415(k)==g); }; \\ Very naive and slow. See comments in A327978.
    
  • PARI
    A351029(n) = {v=prod(j=1,n,prime(j)); c=0; for(k=2, v^2/4, d=0; m=factor(k); for(i=1, matsize(m)[1], d+=(m[i,2]/m[i,1])*k; if(d>v, break;); ); if(d==v, c=c+1; ); ); c;} \\ Craig J. Beisel, Sep 13 2022

Formula

a(n) = Sum_{k=1..A002620(A002110(n))} [A003415(k) = A002110(n)], where [ ] is the Iverson bracket.
a(n) = A116979(n) + A369000(n). - Antti Karttunen, Jan 19 2024

Extensions

a(7) from Craig J. Beisel, Sep 13 2022
a(8)..a(12) [the last based on the value of A116979(12)] from Antti Karttunen, Jan 09 2024

A368703 a(n) is the least integer k whose arithmetic derivative is equal to the n-th primorial, or 0 if no such k exists.

Original entry on oeis.org

2, 0, 9, 161, 2189, 29861, 510221, 1547371, 79332523, 9592991561, 265257420749, 1102527599503
Offset: 0

Views

Author

Antti Karttunen, Jan 16 2024

Keywords

Comments

a(n) = the smallest integer k for which A003415(k) = A002110(n), and 0 if no such k exists.
If there are non-Goldbachian solutions (A366890) for some n, i.e., if A369000(n) > 0, then the smallest of them appears here as a value of a(n).
a(12) <= 25962012375103, a(13) <= 4958985803436403, a(14) <= 32442711864461575, a(15) <= 11758779158543465383. - David A. Corneth, Jan 17 2024

Examples

			a(0) = 2 as the least number k such that A003415(k) = A002110(0) = 1 is 2.
a(1) = 0 as there is no number k such that A003415(k) = A002110(1) = 2.
a(7) = 1547371 as it is the least number k such that A003415(k) = A002110(7) = 510510. See also A366890.
		

Crossrefs

Formula

a(n) <= A368704(n).
For n<>1, A003415(a(n)) = A002110(n).

A369000 a(n) is the number of integers, not semiprimes, whose arithmetic derivative is equal to the n-th primorial.

Original entry on oeis.org

0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 2, 9, 18
Offset: 1

Views

Author

Antti Karttunen, Jan 16 2024

Keywords

Comments

a(n) = number of solutions k to equation A003415(k) = A002110(n) with A001222(k) > 2.

Crossrefs

Cf. A001222, A002110, A003415, A116979, A351029, A366890 (solutions themselves).

Programs

  • PARI
    \\ See the attached PARI-program.

Formula

a(n) = A351029(n) - A116979(n).

A369240 Irregular triangle read by rows, where row n lists in ascending order all numbers k whose arithmetic derivative k' is equal to the n-th partial sum of primorials, A143293(n). Rows of length zero are simply omitted, i.e., when A369239(n) = 0.

Original entry on oeis.org

14, 45, 74, 198, 5114, 10295, 65174, 1086194, 40354813, 20485574, 465779078, 12101385979, 15237604243, 18046312939, 29501083259, 52467636437, 65794608773, 86725630997, 87741700037, 131833085077, 168380217557, 176203950283, 177332276971, 226152989747, 292546582253, 307379277253, 321317084917, 342666536237, 348440115979
Offset: 1

Views

Author

Antti Karttunen, Jan 19 2024

Keywords

Comments

Only two nonsquarefree terms are currently known: 45, 198.
See comments in A369239 for an explanation why rows with an odd n generally have more terms than those with an even n.

Examples

			Row 1 has no terms because there are no numbers whose arithmetic derivative is equal to 3 = A143293(1).
Row 2 has just one term: 14 (= 2 * 7), with A003415(14) = 2+7 = 9 = A143293(2).
Row 3 has two terms: 45 (= 3^2 * 5) and 74 (= 2 * 37), with A003415(3*3*5) = (3*3) + (3*5) + (3*5) = 39, and A003415(2*37) = 2+37 = 39 = A143293(3).
Row 4 has one term: 198 (= 2 * 3^2 * 11).
Row 5 has two terms: 5114 (= 2 * 2557) and 10295 (= 5 * 29 * 71).
Row 6 has one term: 65174 (= 2 * 32587).
Row 7 has two terms: 1086194 (= 2 * 543097) and 40354813 (= 97 * 541 * 769).
Row 8 has one term: 20485574 (= 2 * 10242787).
Row 9 has 27 terms:
  465779078 (= 2 * 1049 * 222011),
  12101385979 (= 79 * 151 * 1014451),
  15237604243 (= 67 * 2659 * 85531),
  18046312939 (= 79 * 3931 * 58111),
  29501083259 (= 179 * 431 * 382391),
  52467636437 (= 233 * 8501 * 26489),
  65794608773 (= 449 * 761 * 192557),
  86725630997 (= 449 * 2213 * 87281),
  87741700037 (= 449 * 2381 * 82073),
  131833085077 (= 613 * 12241 * 17569),
  etc., up to the last one of them:
  680909375411 (= 8171 * 8219 * 10139).
Row 10 has no terms.
Row 11 has 319 terms, beginning as:
  293420849770 (= 2 * 5 * 157 * 186892261),
  414527038034 (= 2 * 207263519017),
  12092143168139 (= 59 * 5231 * 39180191),
  16359091676491 (= 79 * 91291 * 2268319),
  20784361649963 (= 167 * 251 * 495845639),
  etc., up to the last one of them:
  17866904665985941 (= 224869 * 248041 * 320329).
Row 12 has just one term: 318745032938881 (= 71 * 173 * 307 * 1259 * 67139).
Row 13 probably has thousands of terms. Interestingly, many of them appear in clusters that share a smallest prime factor. For example the following five:
  390120053091860677 (= 1321 * 23563 * 12533283799),
  407566547631686353 (= 1321 * 121687 * 2535429439),
  410999481465461617 (= 1321 * 547999 * 567752023),
  411668623600396429 (= 1321 * 1701571 * 183144919),
  411913933485848977 (= 1321 * 8787799 * 35483263),
  and also these:
  3846842704473466739 (= 20231 * 31601 * 6017086469),
  4300947161911032233 (= 20231 * 43319 * 4907590697),
  4437898843097002379 (= 20231 * 47969 * 4572980861),
  6130224093530040341 (= 20231 * 692459 * 437587529),
  6210584908378844243 (= 20231 * 1275569 * 240664037).
		

Crossrefs

Cf. A328243 (same sequence sorted into ascending order).
Cf. A369239 (number of terms on row n), A369243 (the first element of each row), A369244 (the last element of each row).
Cf. also A366890.

A377992 Irregular triangle giving on row n all antiderivatives of A024451(n), for n >= 2.

Original entry on oeis.org

6, 30, 58, 210, 435, 507, 2310, 8435, 21827, 29233, 30030, 39030, 62762, 69914, 76442, 78874, 510510, 1342785, 1958673, 9699690, 28235362, 223092870, 975351895, 1527890095, 1885679383, 2189118743, 2329696457, 2338611863, 3485765789, 4586671213, 5453593183, 5472849253, 5674340053, 8071055747, 8931775397, 9332889127
Offset: 2

Views

Author

Antti Karttunen, Nov 19 2024

Keywords

Comments

Row n lists in ascending order all numbers k whose arithmetic derivative k' [A003415(k)] is equal to A024451(n) = A003415(A002110(n)). For A024451(1) = 1, there is an infinite number of integers k for which A003415(k) = 1 (namely, all the primes), therefore the rows start from index n=2, with each having A377993(n) terms. Note that as a whole, this sequence is not monotonic, for example, the last term on row 9, 1171314743479 is larger than the first term of row 10, 6469693230.
Because A024451 is a subsequence of A048103, this is also. And if all terms of A024451 are squarefree as is conjectured, then all terms of this sequence are cubefree (A004709).

Examples

			The initial rows of the triangle:
Row n  terms
   2   6;
   3   30, 58;
   4   210, 435, 507;
   5   2310, 8435, 21827, 29233;
   6   30030, 39030, 62762, 69914, 76442, 78874;
   7   510510, 1342785, 1958673;
   8   9699690, 28235362;
   9   223092870, 975351895, 1527890095, ..., , 1167539981207, 1171314743479; (row 9 has 330 terms that are given separately in A378209)
  10   6469693230, 27623935255, 37262208055;
  11   200560490130, 345634019382, 440192669882;
  etc.
The only terms that occur on row 4 are k = 210, 435, 507 ( = 2*3*5*7, 3*5*29, 3 * 13^2) as they are only numbers for which A003415(k) = 247 = A024451(4) = A003415(A002110(4)), as we have (2*3*5*7)' = (3*5)'*(2*7) + (2*7)'*3*5 = (8*14) + (9*15) = (3*5*29)' = (3*5)'*29 + (3*5)*29' = (8*29 + 15*1) = (3 * 13 * 13)' = (3*13)'*13 + (3*13)*13' = 16*13 + 3*13*1 = 19*13 = 247.
 Note that 507 is so far the only known term in this triangle that is not squarefree (in A005117).
		

Crossrefs

Cf. A003415, A005117, A024451, A377993 (row lengths).
Subsequence of A048103, conjectured also to be a subsequence of A004709.
Cf. A002110 (left edge, from its term a(2)=6 onward), A378209 (row 9).

A377987 Irregular triangle giving on row n all those antiderivatives k of the n-th factorial, for which bigomega(k) > 2.

Original entry on oeis.org

20, 116, 716, 2512, 5036, 40316, 84672, 176364, 1390500, 1782108, 3628773, 3628796, 10529953, 12258673, 76944384, 5338541473, 8944397353, 11690698969, 1236868096, 1849666112, 3096111708, 1004929973233, 54465962625, 1657198101073, 6791831913289, 1307674367996, 5739085040351, 21522396453889, 63577408859233, 104747513922049, 287711613106993, 626768279186209
Offset: 4

Views

Author

Antti Karttunen, Nov 21 2024

Keywords

Comments

Row n lists in ascending order all numbers k whose arithmetic derivative k' [A003415(k)] is equal to the n-th factorial, n! = A000142(n), and that have more than two prime factors with multiplicity, i.e., A001222(k) > 2. Rows of length zero are simply omitted, i.e., when A377986(n) = 0.
Of the initial 32 terms, 16 are odd, and of those 16 odd terms, 11 are squarefree. There are only odd terms on rows 14 and 15, why?

Examples

			Row n    k such that A003415(k) = n! and A001222(k) > 2.
    (no solutions for n = 1..3)
    4:   20;   (20 = 2*2*5, so 20' = 4'*5 + 5'*4 = 4*5 + 1*4 = 24 = 4!)
    5:   116;  (116 = 2*2*29, so 116' = 4*29 + 1*4 = 120 = 5!)
    6:   716;  (716 = 2*2*179, so 716' = 4*179 + 1*4 = 720 = 6!)
    7:   2512, 5036;
    8:   40316;
    9:   84672, 176364; (2^6 * 3^3 * 7^2 and 2^2 * 3^3 * 23 * 71)
   10:   1390500, 1782108, 3628773, 3628796, 10529953, 12258673;
   11:   (no solutions)
   12:   76944384, 5338541473, 8944397353, 11690698969;
   13:   1236868096, 1849666112, 3096111708, 1004929973233;
   14:   54465962625, 1657198101073, 6791831913289;
   15:   1307674367996, 5739085040351, 21522396453889, 63577408859233, 104747513922049, 287711613106993, 626768279186209;
   etc.
Note that although A003415(9) = 6 = 3!, it is not included in this table as 9 is a semiprime, with A001222(9) = 2.
		

Crossrefs

Cf. A000142, A001222, A003415, A377986 (row lengths).
Cf. also A366890, A369240, A377992.

Programs

  • PARI
    \\ Use the programs given in A377987 and A376410.
    \\ the data needs also to be post-processed (sorted) with
    \\ sols = sort_solutions_vector(readvec("a_terms_for_A377987_unsorted.txt"));
    \\ using these functions:
    sort_solutions_vector(v) = vecsort(v,sort_by_A003415_and_magnitude);
    sort_by_A003415_and_magnitude(x,y) = { my(s = sign(A003415(x)-A003415(y))); if(!s, sign(x-y), s); };

A369246 Irregular triangle read by rows, where row n lists in ascending order all numbers k in A046316 for which k' = the n-th Euclid number, where k' stands for the arithmetic derivative, and the Euclid numbers are given by A006862. Rows of length zero are simply omitted, i.e., when A369245(n) = 0.

Original entry on oeis.org

399, 4809, 5763, 63021, 76449, 1301673, 19204051701, 421177029231, 908999759928891, 39248269334566041, 39248273246018313, 68437232802099093891, 4903038892893242229501
Offset: 1

Views

Author

Antti Karttunen, Jan 22 2024

Keywords

Comments

All terms are multiples of 3 because for all n >= 2, A006862(n) = 1 + A002110(n) == +1 (mod 3), see A369252.
Although the first thirteen terms appear in the ascending order, this might not be true for all the later terms, if they exist.

Examples

			Rows 1..3 have no terms.
Row 4 has one term: 399 = 3 * 7 * 19, whose arithmetic derivative (see A003415) 399' is 211 = 1 + prime(4)# [= A006862(4)].
Row 5 has two terms: 4809 = 3 * 7 * 229 and 5763 = 3 * 17 * 113, with 4809' = 5763' = 2311 = 1 + prime(5)#.
Row 6 has two terms: 63021 = 3 * 7 * 3001 and 76449 = 3 * 17 * 1499, with 63021' = 76449' = 30031 = 1 + prime(6)#.
Row 7 has one term: 1301673 = 3 * 17 * 25523, whose arithmetic derivative is 510511 = 1 + prime(7)#.
Rows 8 and 9 have no terms.
Row 10 has one term: 19204051701 = 3 * 281 * 22780607, whose arithmetic derivative is 6469693231 = 1 + prime(10)#.
Row 11 has one term: 421177029231 = 3 * 7 * 20056049011, whose arithmetic derivative is 200560490131 = 1 + prime(11)#.
Row 12 has no terms.
Row 13 has one term: 908999759928891 = 3 * 727 * 416781182911, whose arithmetic derivative is 304250263527211 = 1 + prime(13)#.
Row 14 has two terms: 39248269334566041 = 3 * 8071457 * 1620866771, and 39248273246018313 = 3 * 11056387 * 1183276033, which both have arithmetic derivative 13082761331670031 = 1 + prime(14)#.
Row 15 has no terms.
Row 16 has one term: 68437232802099093891 = 3 * 7 * 3258915847719004471, whose arithmetic derivative is 32589158477190044731 = 1 + prime(16)#.
Row 17 has at least this term: 4903038892893242229501 = 3 * 17 * 96138017507710631951, whose arithmetic derivative is 1922760350154212639071 = 1 + prime(17)#.
		

Crossrefs

Subsequence of A008585 and of A046316.
Cf. A003415, A002110, A006862, A369054, A369245 (counts of solutions, length of row n), A369252.
Cf. also A366890, A369240 for similar tables.
Showing 1-9 of 9 results.