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!)
A335789 a(n) = time to the nearest second at the n-th instant (n>=0) when the hour and minute hands on a clock face coincide, starting at time 0:00. 1
0, 3927, 7855, 11782, 15709, 19636, 23564, 27491, 31418, 35345, 39273, 43200, 47127, 51055, 54982, 58909, 62836, 66764, 70691, 74618, 78545, 82473, 86400, 90327, 94255, 98182, 102109, 106036, 109964, 113891, 117818, 121745, 125673, 129600, 133527, 137455, 141382 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
After 12 hours or 43200 seconds, the hands overlap at 12:00 and the cycle repeats.
LINKS
FORMULA
a(n) = round(n*43200/11).
EXAMPLE
For n=1, 3927 would correspond to slightly after 01:05.
PROG
(SageMath)
L=[]
n=0
while n<50:
L.append(round(numerical_approx((n+n/11))*3600))
n+=1
print(L)
CROSSREFS
Cf. A120500 (as HHMMSS).
Sequence in context: A229642 A266060 A034283 * A250671 A179139 A014887
KEYWORD
nonn
AUTHOR
Sean Lestrange, Aug 14 2020
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 19 02:12 EDT 2024. Contains 371782 sequences. (Running on oeis4.)