The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A061955 Numbers n such that n divides the (left) concatenation of all numbers <= n written in base 2 (most significant digit on right). 141
1, 3, 7, 29, 375, 545, 971, 1643, 37801, 435805, 554423, 565947, 645915, 733533, 871927, 9703985 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
This sequence differs from A029519 in that all least significant zeros are kept during concatenation.
No more terms < 10^7. - Lars Blomberg, Aug 31 2011
LINKS
EXAMPLE
7654321 -> (111)(011)(101)(001)(11)(01)(1) base 2 ->11101110100111011 base 2 = 122171 and 7 divides 122171.
MATHEMATICA
b = 2; c = {}; Select[Range[10^4], Divisible[FromDigits[c = Join[Reverse[IntegerDigits[#, b]], c], b], #] &] (* Robert Price, Mar 07 2020 *)
PROG
(PARI) is(n) = my(t=[]); for(k=1, n, t=concat(Vecrev(binary(k)), t)); if(Mod(subst(Pol(t), x, 2), n)==0, return(1), return(0)) \\ Felix Fröhlich, Jul 06 2017
CROSSREFS
Sequence in context: A082096 A119325 A048722 * A113834 A057181 A333393
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; Aug 25 2002
a(13)-a(16) from Lars Blomberg, Aug 31 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 May 14 06:35 EDT 2024. Contains 372528 sequences. (Running on oeis4.)