Michael S. Branicky, <a href="/A339736/b339736_1.txt">Table of n, a(n) for n = 1..456</a>
Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).
Michael S. Branicky, <a href="/A339736/b339736_1.txt">Table of n, a(n) for n = 1..456</a>
editing
approved
(PARI) bad(n, b)=my(d=Set(digits(n, b))); b-d[#d]==1 && d[1];
ok(n, L)=for(b=2, L, if(bad(n, b), return(0))); 1;
list(lim)=my(v=List([1])); forprime(p=3, lim+1, if(ok(p-1, sqrtint(p)+1), listput(v, p-1))); Vec(v) \\ Charles R Greathouse IV, Sep 17 2021
proposed
editing
editing
proposed
Michael S. Branicky, <a href="/A339736/b339736_1.txt">Table of n, a(n) for n = 1..429456</a>
proposed
editing
editing
proposed
Every term is 1 less than a prime number because, for all numbers m and m+1, , if m+1 is not prime then, in base b = largest divisor of m+1, m+1 is a two digit number ending in 0 and b-1 (since m +1 is a two digit number ending in b-1, 0), thus proving m is not in the sequence. (End)
proposed
editing
editing
proposed
From Alex Stefanov, Sep 13 2021: (Start)
Every term is 1 less than a prime number because, for all numbers m and m+1, if m+1 is not prime then, in base b = largest divisor of m+1, m+1 is a two digit number ending in 0 and m is a two digit number ending in b-1, thus proving m is not in the sequence. - _Alex Stefanov_, Sep 13 2021(End)
proposed
editing
editing
proposed