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

A383300 Numbers k such that primorial base expansion of k has the primorial base expansion of k' as its suffix, where k' stands for the arithmetic derivative of k (A003415).

Original entry on oeis.org

0, 1, 3, 4, 5, 7, 11, 13, 17, 19, 23, 27, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97, 101, 103, 107, 109, 113, 127, 131, 137, 139, 149, 151, 157, 163, 167, 173, 179, 181, 191, 193, 197, 199, 211, 223, 227, 229, 233, 239, 241, 251, 257, 263, 269, 271, 277, 281, 283, 293, 307, 311, 313, 317, 331
Offset: 1

Views

Author

Antti Karttunen, May 15 2025

Keywords

Comments

a(n) = A348283(n) for n=1 and n=3..334432. a(334433) = 4784261, which is not present in A348283 (see examples). - R. J. Mathar and Antti Karttunen, May 16 2025

Examples

			0 is a term as A003415(0) = 0.
1 is a term as A003415(1) = 0, whose primorial base expansion is here understood as an empty sequence of digits, thus it is a suffix of A049345(1) = 1.
3, like all odd primes, is a term as A003415(3) = 1, with A049345(3) = 11 and A049345(1) = 1.
4 and 27 are terms as they are in A051674 (the nonzero fixed points of A003415).
4784261 is a term as A003415(4784261) = 189671, with A049345(4784261) = 96411121 and A049345(189671) = 6411121. 4784261 is the first term > 1 of this sequence that is not in A348283. See more examples in A383301.
		

Crossrefs

Disjoint union of {1}, A348283\{2} and A383301.
Cf. A006005, A051674 (other subsequences).
Subsequence of A383299.
Cf. also A383933.

Programs

  • PARI
    A003415(n) = if(n<=1, 0, my(f=factor(n)); n*sum(i=1, #f~, f[i, 2]/f[i, 1]));
    isA383300(n) = if(n<2, 1, my(p=2, k=A003415(n)); while(k, if((k%p)!=(n%p), return(0)); n = n\p; k = k\p; p = nextprime(1+p)); (1));
    
  • PARI
    A002110(n) = prod(i=1,n,prime(i));
    A235224(n) = { my(s=0, p=2); while(n, s++; n = n\p; p = nextprime(1+p)); (s); };
    isA383300(n) = { my(ad=A003415(n)); (n%A002110(A235224(ad))==ad); };

Formula

{k such that A003415(k) is equal to k modulo A002110(A235224(A003415(k)))}.

A383299 Numbers k such that A276086(k) is a multiple of A276086(A003415(k)), where A003415 is the arithmetic derivative, and A276086 is the primorial base exp-function.

Original entry on oeis.org

0, 1, 3, 4, 5, 7, 9, 11, 13, 15, 17, 19, 23, 27, 29, 31, 37, 41, 43, 45, 47, 51, 53, 59, 61, 67, 71, 73, 79, 83, 87, 89, 97, 101, 103, 107, 109, 113, 117, 119, 127, 131, 137, 139, 141, 147, 149, 151, 157, 161, 163, 165, 167, 171, 173, 177, 179, 181, 191, 193, 197, 199, 203, 207, 209, 211, 223, 227, 229, 233, 239
Offset: 1

Views

Author

Antti Karttunen, May 15 2025

Keywords

Comments

The sequence contains the intersection of A048103, A369650, and A328387. That is, {1, 15, 5005}, at least.

Examples

			5 is a term as A003415(5) = 1, and A276086(5) = 18 is a multiple of A276086(1) = 2, and ditto for all odd primes.
9 is a term as A003415(9) = 6, and A276086(9) = 30 is a multiple of A276086(6) = 5.
15 is a term as A003415(15) = 8, and A276086(15) = 150 is a multiple of A276086(8) = 15.
5005 is a term as A003415(5005) = 2556, and A276086(5005) = 39055266250 = 7803250 * A276086(2556) = 7803250 * 5005. See also A369650.
See also examples in A383300.
		

Crossrefs

Cf. A003415, A048103, A276086, A327859, A328387, A383298 (characteristic function).
Cf. A006005, A051674, A383300, A383301 (subsequences).
Cf. also A369650.

Programs

Showing 1-2 of 2 results.