login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A061940 Numbers n such that n divides the (right) concatenation of all numbers <= n written in base 11 (most significant digit on right). 1
1, 5, 17, 20, 35, 40, 60, 75, 113, 120, 125, 395, 512, 1204, 2285, 5451, 5648, 12736, 36547, 113675, 1073605, 1466089, 3610208, 4076745 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
This sequence differs from A029504 in that all least significant zeros are removed before concatenation.
No more terms < 10^7. - Lars Blomberg, Oct 20 2011
LINKS
EXAMPLE
See A061931 for example.
MATHEMATICA
b = 11; c = {}; Select[Range[10^4], Divisible[FromDigits[c = Join[c, IntegerDigits[IntegerReverse[#, b], b]], b], #] &] (* Robert Price, Mar 08 2020 *)
PROG
(PARI) lista(nn) = my(t=[]); for(k=1, nn, t=concat(t, Vecrev(digits(k/11^valuation(k, 11), 11))); if(Mod(fromdigits(t, 11), k)==0, print1(k, ", "))); \\ Jinyuan Wang, Dec 05 2020
CROSSREFS
Sequence in context: A023711 A045119 A045095 * A038470 A043003 A246329
KEYWORD
nonn,base,more
AUTHOR
Larry Reeves (larryr(AT)acm.org), May 24 2001
EXTENSIONS
Edited and updated by Larry Reeves (larryr(AT)acm.org), Apr 12 2002
a(21)-a(24) from Lars Blomberg, Oct 20 2011
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 07:22 EDT 2024. Contains 371922 sequences. (Running on oeis4.)