A262079 Differences between successive numbers that can be written as palindromes in base 60, cf. A262065.
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
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.
Links
- Reinhard Zumkeller, Table of n, a(n) for n = 1..10000
- Eric Weisstein's World of Mathematics, Palindromic Number
- Eric Weisstein's World of Mathematics, Sexagesimal
- Wikipedia, Palindromic number
- Wikipedia, Sexagesimal
- Index entries for sequences related to palindromes
Programs
-
Haskell
a262079 n = a262079_list !! (n-1) a262079_list = zipWith (-) (tail a262065_list) a262065_list
Comments