━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
For number-based odd one out:
• Perfect Square check: n x n (1,4,9,16,25,36,49,64,81,100...)
• Perfect Cube check: n x n x n (1,8,27,64,125,216...)
• Prime Number: divisible only by 1 and itself
• Sum of digits trick: add all digits of each number, see which total breaks the pattern
• Number of factors trick: if 3 numbers have even number of factors but one has odd number of factors (perfect squares have odd number of factors) — that one is different
For letter-based odd one out:
• Position value formula: A=1, B=2, C=3 ... Z=26
• Gap formula: Subtract position values of letters in a group to find the pattern gap
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━