A347520 A053392 with duplicates removed.
Keywords
Links
- Dana G. Korssjoen, Biyao Li, Stefan Steinerberger, Raghavendra Tripathi, and Ruimin Zhang, Finding structure in sequences of real numbers via graph theory: a problem list, arXiv:2012.04625 [math.CO], 2020.
Crossrefs
Programs
-
Mathematica
a[n_] := Total /@ Transpose[{Most[id = IntegerDigits[n]], Rest[id]}] // IntegerDigits // Flatten // FromDigits; DeleteDuplicates[Table[a[n], {n, 0, 1000}]]
-
Python
# uses A053392 from collections import OrderedDict def afiltern(terms): return list(OrderedDict.fromkeys(A053392(k) for k in range(terms))) print(afiltern(179)) # Michael S. Branicky, Sep 04 2021
Comments