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.

A262079 Differences between successive numbers that can be written as palindromes in base 60, cf. A262065.

Original entry on oeis.org

1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61
Offset: 1

Views

Author

Reinhard Zumkeller, Sep 10 2015

Keywords

Comments

First differences of A262065.
From Georg Fischer, Feb 15 2019: (Start)
Up to n = 10000, only 12 different values occur. The following table shows the counts and those values.
59 -12740399
61 1
45 12747601
1 12956461
2 2
3479 216001
1 3599
2753 3600
1 59
3480 60
117 61
1 7202
(End)

Examples

			a(n) = 1 for n = 1..59, as the first 60 sexagesimal palindromes are 0..59;
a(60) = (1*60^1 + 1*60^0) - 59*(60^0) = 61 - 59 = 2;
a(61) = (2*60^1 + 2*60^0) - (1*60^1+1*60^0) = 122 - 61 = 61.
		

Crossrefs

Programs

  • Haskell
    a262079 n = a262079_list !! (n-1)
    a262079_list = zipWith (-) (tail a262065_list) a262065_list