OFFSET
2,1
COMMENTS
Two cryptarithms are the same if one may be obtained from the other by a process of replacing letters and swapping the summands. For instance, the problem AB + BCD = DDD is the same as ABC + DA = CCC.
Solutions must assign a different digit to each letter, and numbers may not begin with 0.
LINKS
Cryptarithms.com, Cryptarithms - Number Puzzles
Math StackExchange, How many strong simple addition mathagrams of degree one are there in a given base?
Eric M. Schmidt, C++ code to compute this sequence
Eric M. Schmidt, List of solvable problems in base 3
EXAMPLE
In base 10, the classic SEND + MORE = MONEY has an assignment of digits to the letters that makes the equation true, and is counted because neither SEND nor MORE contains a given letter more than once.
In base 3, CBA + AB = CAA is solvable, and is counted. There are exactly two solutions: (A = 1, B = 0, C = 2) and (A = 2, B = 0, C = 1).
CROSSREFS
KEYWORD
nonn,base,hard,more
AUTHOR
Eric M. Schmidt, Oct 18 2016
STATUS
approved