This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A132291 #21 Feb 13 2023 12:28:44 %S A132291 12132003,23121300,30023121,31213200,1214230043,1312432004,2342131400, %T A132291 2412134003,3004312142,3400324121,4002342131,4131243200, %U A132291 1213267345006475,1213275364005746,1214267540036573,1214273645300765,1214275640035763,1215247365430076 %N A132291 Base 10 strong Skolem-Langford numbers. %C A132291 Self-describing numbers: between two digits "d" there are d digits. %C A132291 a(n) has either 0 or 2 instances of any digit, hence even number of digits. %C A132291 "Strong" means that every digit from 0 to the largest digit of a(n) must be present in a(n). See A108116 for the "weak" variant without this additional constraint. %C A132291 Number of digits of a(n) == 0 or 2 (mod 8) %C A132291 Largest element is a(2820) = 867315136875420024. %H A132291 D. Wilson, <a href="/A132291/b132291.txt">Complete table of n, a(n) for n = 1..2820</a> %o A132291 (Python) %o A132291 def A132291gen(): # SL() is in A108116 %o A132291 for numd in range(1, 11): %o A132291 dset = ("0123456789")[:numd] %o A132291 s = [0 for _ in range(2*numd)] %o A132291 for an in sorted(SL(dset, s)): %o A132291 yield an %o A132291 for n, an in enumerate(A132291gen(), start=1): %o A132291 print(n, an) # _Michael S. Branicky_, Dec 14 2020 %Y A132291 Base 10 Skolem-Langford numbers are in A108116. %Y A132291 Base 10 weaker Skolem-Langford numbers are in A357826. %K A132291 base,easy,fini,full,nonn %O A132291 1,1 %A A132291 _Eric Angelini_, Jun 26 2005, Aug 10 2007 %E A132291 Edited by _N. J. A. Sloane_, Nov 18 2007