Write a function that checks if a given sequence of digits is an additive sequence, i.e. if the sequence can be split into a sequence of numbers where each number is the sum of the previous two numbers.
For example:
"12988110101891"
... is an additive sequence since it can be split into the sequence:
129, 881, 1010, 1891
... and 129 + 881 = 1010, 881 + 1010 = 1891.
Note: A valid additive sequence should contain at least three numbers.
is_additive("112358") ➞ True
# The digits can be split into an additive sequence: 1, 1, 2, 3, 5, 8.
# 1 + 1 = 2, 1 + 2 = 3, 2 + 3 = 5, 3 + 5 = 8
is_additive("129881000") ➞ True
# Each number can contain 1 or more digits: 12, 988, 1000.
# 12 + 988 = 1000
is_additive("12988110101891") ➞ True
# 129 + 881 = 1010, 881 + 1010 = 1891
is_additive("123456789") ➞ False
is_additive("300045007500") ➞ True
0, 1, 2, ... 9.1, 2, 03 and 1, 02, 3 are invalid.