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!)
A077146 a(n) = floor((concatenation of next (n+1) numbers) / (concatenation of next n numbers)). 1
23, 19, 173, 14093, 145, 137, 131, 127, 124, 121, 119, 117, 116453592, 11416794012, 1141, 1132, 1124, 1116, 1110, 1104, 1099, 1094, 1090, 1086, 1083, 1079, 1076, 1073, 1071, 1068, 1066, 1064, 1062, 1060, 1058, 1057, 1055, 1053, 1052, 1051, 1049, 1048, 1047 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
The numerator numbers to be concatenated are taken from 2,3,4,... and the denominator numbers from 1,2,3,... - Lars Blomberg, Mar 18 2012
LINKS
FORMULA
a(n) = floor(A053067(n+1)/A053067(n)). - Michel Marcus, Jul 31 2022
EXAMPLE
a(1) = floor(23/1) = 23.
a(2) = floor(456/23) = 19.
a(3) = floor(78910/456) = 173.
PROG
(Python)
def b(n): return int("".join(map(str, range((n-1)*n//2+1, n*(n+1)//2+1))))
def a(n): return b(n+1)//b(n)
print([a(n) for n in range(1, 44)]) # Michael S. Branicky, Jul 31 2022
CROSSREFS
Cf. A053067.
Sequence in context: A160436 A105818 A085450 * A077576 A004512 A214342
KEYWORD
base,nonn
AUTHOR
Amarnath Murthy, Oct 30 2002
EXTENSIONS
a(7)-a(36) from Lars Blomberg, Mar 18 2012
a(37) and beyond from Michael S. Branicky, Jul 31 2022
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:29 EDT 2024. Contains 371905 sequences. (Running on oeis4.)