A019532
Numbers k such that Fibonacci(k) divides k!.
Original entry on oeis.org
1, 2, 3, 4, 5, 6, 8, 12, 24
Offset: 1
- Posting to math-fun(AT)cs.arizona.edu by R. W. Gosper Nov 06 1996.
A348519
Tetraphobe or 4-phobe numbers: integers that are not tetraphile numbers.
Original entry on oeis.org
1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 20, 24, 25, 26, 32, 48
Offset: 1
There are no 4 positive integers b_1 < b_2 < b_3 < b_4 such that b_1 divides b_2, b_2 divides b_3, b_3 divides b_4, and 17 = b_1 + b_2 + b_3 + b_4, hence 17 is a term.
-
Select[Range@48,Select[Select[IntegerPartitions[#,{4}],Length@Union@#==4&],And@@(IntegerQ/@Divide@@@Partition[#,2,1])&]=={}&] (* Giorgos Kalogeropoulos, Oct 24 2021 *)
-
isok(k) = forpart(p=k, if (#Set(p) == 4, if (!(p[2] % p[1]) && !(p[3] % p[2]) && !(p[4] % p[3]), return(0))), , [4, 4]); return(1); \\ Michel Marcus, Nov 14 2021
A349188
Largest n-phobe number.
Original entry on oeis.org
2, 24, 48, 240, 1440, 2400, 7440, 25920, 72000, 234000
Offset: 2
For n = 2, integers 1 and 2 are 2-phobe, then for m >= 3, every m = 1 + (m-1) with 1 < m-1 and 1 divides m-1, so, each m >= 3 is 2-phile number and a(2) = 2.
A349189
Number of n-phobe numbers.
Original entry on oeis.org
2, 9, 23, 68, 177, 459, 1162, 2947, 7306, 18202
Offset: 2
For n = 2, integers 1 and 2 are 2-phobe, then for m >= 3, every m = 1 + (m-1) with 1 < m-1 and 1 divides m-1, so, each m >= 3 is 2-phile number and a(2) = 2.
Showing 1-4 of 4 results.
Comments