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.

A339819 Squarefree numbers k > 1 for which neither 2-adic nor 3-adic valuation of phi(k) exceeds the corresponding valuation of k-1.

Original entry on oeis.org

2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 33, 37, 41, 43, 47, 53, 59, 61, 67, 69, 71, 73, 79, 83, 89, 97, 101, 103, 107, 109, 113, 127, 131, 137, 139, 141, 145, 149, 151, 157, 163, 167, 173, 177, 179, 181, 191, 193, 197, 199, 211, 213, 217, 223, 227, 229, 233, 239, 241, 249, 251, 253, 257, 263, 269, 271, 277, 281, 283
Offset: 1

Views

Author

Antti Karttunen, Dec 20 2020

Keywords

Crossrefs

Subsequence of A339817.

Programs

  • PARI
    isA339819(n) = ((n>1)&&issquarefree(n)&&(valuation(eulerphi(n),2)<=valuation(n-1,2))&&(valuation(eulerphi(n),3)<=valuation(n-1,3)));