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.

A104365 a(n) = A104350(n) + 1.

Original entry on oeis.org

2, 3, 7, 13, 61, 181, 1261, 2521, 7561, 37801, 415801, 1247401, 16216201, 113513401, 567567001, 1135134001, 19297278001, 57891834001, 1099944846001, 5499724230001, 38498069610001, 423478765710001, 9740011611330001
Offset: 1

Views

Author

Reinhard Zumkeller, Mar 06 2005

Keywords

Crossrefs

Programs

  • Mathematica
    FoldList[Times, Array[FactorInteger[#][[-1, 1]] &, 30]] + 1 (* Amiram Eldar, Apr 08 2024 *)

Formula

a(n) = (a(n-1) - 1) * A006530(n) + 1 for n>1, a(1) = 0;