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!)
A067097 Floor[X/Y] where X = concatenation in increasing order of first n powers of 2 and Y = that of first n natural numbers. 6
2, 2, 2, 20, 201, 2010, 201012, 20101226, 2010122457, 201012245610, 20101224560848, 2010122456084687, 201012245608468521, 201012245608468519453, 201012245608468519428723, 201012245608468519428463029, 2010122456084685194284602619644 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
a(6)= floor [ 248163264/123456] = floor[2010.13530326594090202177293] = 2010.
MATHEMATICA
f[n_] := (k = 1; x = y = "0"; While[k < n + 1, x = StringJoin[x, ToString[2^k]]; y = StringJoin[y, ToString[k]]; k++ ]; Return[ Floor[ ToExpression[x] / ToExpression[y]]] ); Table[ f[n], {n, 1, 20} ]
Table[Floor[FromDigits[Flatten[IntegerDigits/@(2^Range[n])]]/FromDigits[ Flatten[IntegerDigits/@Range[n]]]], {n, 20}] (* Harvey P. Dale, Dec 30 2018 *)
CROSSREFS
floor[A045507(n)/A019519(n)]
Sequence in context: A226935 A099640 A140283 * A260082 A153438 A098915
KEYWORD
easy,base,nonn
AUTHOR
Amarnath Murthy, Jan 07 2002
EXTENSIONS
More terms from Robert G. Wilson v, Jan 09 2002
More terms from Harvey P. Dale, Dec 30 2018
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 23 08:11 EDT 2024. Contains 371905 sequences. (Running on oeis4.)