A230450 "Comma sum" sequence: a(n+1)-a(n) = rightmost digit of a(n) + leftmost digit of a(n+1), use smallest possible solution; starting with 396.
396, 406, 416, 426, 436, 446, 456, 466, 476, 486, 496, 507, 519, 533, 541, 547, 559, 573, 581, 587, 599, 614, 624, 634, 644, 654, 664, 674, 684, 694, 705, 717, 731, 739, 755, 767, 781, 789, 806, 820, 828, 844, 856, 870, 878, 894, 907, 923, 935, 949, 967
Offset: 1
Links
- Michael S. Branicky, Table of n, a(n) for n = 1..10000
- Eric Angelini, Comma Sums
- Eric Angelini, Comma Sums [Cached copy, with permission]
Programs
-
PARI
A230288_vec([396],200)
-
Python
# uses A230288gen() in A230288 from itertools import islice print(list(islice(A230288gen(start=[396]), 123))) # Michael S. Branicky, Nov 03 2024
Comments