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.

A347302 a(n) = 3^n - lcm{1..n}, with a(0) = 0.

Original entry on oeis.org

0, 2, 7, 21, 69, 183, 669, 1767, 5721, 17163, 56529, 149427, 503721, 1233963, 4422609, 13988547, 42326001, 116887923, 375168249, 929468907, 3253991841, 10227560643, 31148267049, 88788949947, 277075307601, 820517465043, 2515094683929, 7545284051787, 22796479021761
Offset: 0

Views

Author

N. J. A. Sloane, Aug 28 2021

Keywords

Comments

a(n) >= 0 [Hanson, Th. 1]

References

  • Hanson, Denis. "On the product of the primes." Canadian Mathematical Bulletin 15.1 (1972): 33-37.
  • Tenenbaum, G. (2015). Introduction to analytic and probabilistic number theory, 3rd ed., American Mathematical Soc. See page 14.

Crossrefs

Programs

  • Mathematica
    Join[{0},Table[3^n-LCM@@Range[n],{n,30}]] (* Harvey P. Dale, Aug 13 2024 *)