cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

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.

Original entry on oeis.org

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
Offset: 0

Views

Author

Sean Lestrange, Aug 14 2020

Keywords

Comments

After 12 hours or 43200 seconds, the hands overlap at 12:00 and the cycle repeats.

Examples

			For n=1, 3927 would correspond to slightly after 01:05.
		

Crossrefs

Cf. A120500 (as HHMMSS).

Programs

  • SageMath
    L=[]
    n=0
    while n<50:
        L.append(round(numerical_approx((n+n/11))*3600))
        n+=1
    print(L)

Formula

a(n) = round(n*43200/11).