login

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”).

A029530
Numbers k such that k divides the (left) concatenation of all numbers <= k written in base 13 (most significant digit on right and removing all least significant zeros before concatenation).
1
1, 3, 9, 24, 48, 80, 96, 184, 549, 1083, 1392, 1624, 5085, 15968, 16000, 17763, 144843, 156200, 695808, 854904, 1001808, 1960016, 2002776, 2961952
OFFSET
1,2
COMMENTS
This sequence differs from A061966 in that all least significant zeros are removed before concatenation.
No more terms < 10^7. - Lars Blomberg, Sep 15 2011
EXAMPLE
See A029519 for example.
MATHEMATICA
b = 13; c = {}; Select[Range[10^4], Divisible[FromDigits[c = Join[IntegerDigits[IntegerReverse[#, b], b], c], b], #] &] (* Robert Price, Mar 13 2020 *)
PROG
(PARI) lista(nn, m=13) = my(c, s, t); for(k=1, nn, t+=m^c*s=fromdigits(Vecrev(digits(k, m)), m); c+=logint(s, m)+1; if(t%k==0, print1(k, ", "))); \\ Jinyuan Wang, Dec 05 2020
KEYWORD
nonn,base,more,changed
EXTENSIONS
Edited and updated by Larry Reeves (larryr(AT)acm.org), Apr 12 2002
Additional comments and more terms from Larry Reeves (larryr(AT)acm.org), May 25 2001
a(19)-a(24) from Lars Blomberg, Sep 15 2011
STATUS
approved