A354270 Numbers k such that min{m: A354257(m) = k} = k^2.
1, 3, 4, 5, 6, 7, 11, 12, 13, 15, 17, 19, 20, 21, 23, 28, 29, 30, 31, 33, 35, 37, 39, 41, 42, 43, 44, 47, 51, 52, 53, 55, 57, 59, 60, 61, 65, 66, 67, 68, 69, 71, 73, 76, 77, 78, 79, 83, 84, 85, 87, 89, 91, 92, 93, 95, 97, 101, 102, 103, 105, 107, 109, 111, 113
Offset: 1
Examples
3..7 are terms since the first 3, 4, 5, 6 or 7 in A354257 occur at the 9th, the 16th, the 25th, the 36th or the 49th places respectively. 65..69 are terms since the first 65, 66, 67, 68 or 69 in A354257 occur at the 4225th, the 4356th, the 4489th, the 4624th or the 4761st places respectively.
Links
- Jianing Song, Table of n, a(n) for n = 1..10000
Programs
-
PARI
isA354270(n) = ((n%2 || n%12==6) && issquarefree(n)) || (n%8==4 && issquarefree(n/4))
Comments