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.

A354525 Numbers k such that A354512(k) = A001221(k).

Original entry on oeis.org

1, 2, 3, 5, 6, 7, 9, 11, 13, 14, 15, 17, 19, 21, 23, 25, 29, 31, 33, 35, 37, 41, 43, 45, 47, 49, 51, 53, 55, 59, 61, 62, 67, 69, 71, 73, 77, 79, 83, 85, 89, 91, 93, 95, 97, 101, 103, 107, 109, 113, 115, 119, 121, 127, 131, 133, 137, 139, 141, 143, 145, 149, 151, 155, 157
Offset: 1

Views

Author

Jianing Song, Aug 16 2022

Keywords

Comments

Numbers k such that for every prime factor p of k we have gpf(k+p) = p, gpf = A006530.
Numbers k such that for every prime factor p of k, k+p is p-smooth.
If k is an even term, then k+2 is a power of 2, so k is of the form 2*(2^m-1). Those m for which 2*(2^m-1) is a term are listed in A354531.

Examples

			15 is a term since the prime factors of 15 are 3,5, and we have gpf(15+3) = 3 and gpf(15+5) = 5.
		

Crossrefs

Indices of 0 in A354527. Complement of A354526.

Programs

  • PARI
    gpf(n) = vecmax(factor(n)[, 1]);
    isA354525(n) = my(f=factor(n)[, 1]); for(i=1, #f, if(gpf(n+f[i])!=f[i], return(0))); 1