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.

A231900 Omit the 1s from first differences of A084663.

Original entry on oeis.org

2, 7, 13, 5, 29, 3, 59, 3, 7, 5, 3, 131, 3, 263, 3, 17, 3, 5, 3, 19, 569, 3, 17, 3, 13, 7, 5, 3, 1181, 3, 17, 3, 2381, 3, 11, 3, 5, 3, 7, 4787, 3, 5, 3, 11, 3, 53, 3, 11, 3, 13, 19, 9689, 3, 19379, 3, 7, 5, 3, 137, 3, 13, 38921, 3, 17, 3, 7, 77867, 3, 5, 3
Offset: 1

Views

Author

Reinhard Zumkeller, Nov 15 2013

Keywords

Comments

Terms greater than 1 in A134744.

Crossrefs

Cf. A137613.

Programs

  • Haskell
    a231900 n = a231900_list !! (n-1)
    a231900_list = filter (> 1) a134744_list
  • Mathematica
    DeleteCases[Differences[RecurrenceTable[{a[1]==8,a[n]==a[n-1]+GCD[ a[n-1],n]},a,{n,100000}]],1] (* Harvey P. Dale, Apr 12 2016 *)