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.

Previous Showing 11-13 of 13 results.

A189554 Composite numbers n such that x' = n has no integer solution, where x' is the arithmetic derivative (A003415) of x.

Original entry on oeis.org

35, 57, 65, 93, 117, 125, 145, 177, 189, 205, 207, 209, 217, 219, 237, 245, 261, 289, 303, 305, 323, 325, 345, 377, 387, 393, 413, 415, 427, 429, 453, 473, 477, 485, 497, 513, 515, 517, 529, 531, 533, 537, 553, 561, 597, 605, 625, 629, 639, 657, 665, 681
Offset: 1

Views

Author

T. D. Noe, Apr 24 2011

Keywords

Comments

These are the composite terms of A098700. The prime terms of A098700 are in A189483. Apparently all terms are odd.

References

Crossrefs

Formula

Composite k such that A099302(k) = 0.

A189555 Numbers n such that x' = n has two solutions, where x' is the arithmetic derivative (A003415) of x.

Original entry on oeis.org

10, 12, 14, 18, 20, 21, 28, 31, 38, 39, 45, 55, 61, 71, 81, 87, 101, 103, 111, 119, 123, 129, 131, 147, 183, 185, 199, 211, 213, 215, 241, 243, 255, 269, 291, 297, 299, 327, 339, 343, 351, 355, 359, 361, 363, 381, 395, 399, 401, 411, 421, 433, 439, 471, 493
Offset: 1

Views

Author

T. D. Noe, Apr 24 2011

Keywords

Comments

Ufnarovski and Ahlander conjecture that this sequence, and any such sequence that has numbers n such that x' = n has k solutions, is infinite. See A098700 and A189481 for the k=0 and 1 cases. It appears that the only even terms here are 10, 12, 14, 18, 20, 28, and 38. The prime terms are in A189556.

References

Crossrefs

Cf. A003415, A098700 (no solution), A099302, A189481 (1 solution).

Formula

n such that A099302(n) = 2.

A351095 Semiprimes that are not the arithmetic derivative (A003415) of any integer.

Original entry on oeis.org

35, 57, 65, 93, 145, 177, 205, 209, 217, 219, 237, 289, 303, 305, 323, 377, 393, 413, 415, 427, 453, 473, 485, 497, 515, 517, 529, 533, 537, 553, 597, 629, 681, 697, 699, 713, 749, 781, 785, 793, 817, 835, 849, 869, 895, 917, 933, 965, 989, 1037, 1057, 1059, 1077, 1081, 1133, 1137, 1145, 1149, 1159, 1169, 1227, 1243
Offset: 1

Views

Author

Antti Karttunen, Feb 03 2022

Keywords

Comments

17^2 = 289 and 23^2 = 529 are the first squares present.

Crossrefs

Complement of A351096 in A001358. Subsequence of A098700 and of A189554.

Programs

  • 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]));
    isA351095(n) = if(2!=bigomega(n), 0, for(k=1,A002620(n),if(A003415(k)==n,return(0))); (1));
Previous Showing 11-13 of 13 results.