OFFSET
1,1
COMMENTS
There are 2778 numbers with this property and the last one is 9817263540.
LINKS
Michael S. Branicky, Table of n, a(n) for n = 1..2778
EXAMPLE
The first term is 1263907548 and we see that the 9 successive sums of two adjacent digits are, from left to right, 1+2 (=3), 2+6 (=8), 6+3 (=9), 3+9 (=12), 9+0 (=9), 0+7 (=7), 7+5 (=12), 5+4 (=9) and 4+8 (=12); the results between brackets are substrings of the first term.
PROG
(Python)
from itertools import permutations
def afull(): return [int(s) for s in ("".join(c) for c in permutations("0123456789") if c[0]!="0") if all(str(sum(map(int, s[i:i+2]))) in s for i in range(len(s)-1))] # Michael S. Branicky, Oct 15 2023
CROSSREFS
KEYWORD
base,fini,full,nonn
AUTHOR
Eric Angelini and Giorgos Kalogeropoulos, Oct 15 2023
STATUS
approved