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.

A017221 a(n) = 9*n + 5.

Original entry on oeis.org

5, 14, 23, 32, 41, 50, 59, 68, 77, 86, 95, 104, 113, 122, 131, 140, 149, 158, 167, 176, 185, 194, 203, 212, 221, 230, 239, 248, 257, 266, 275, 284, 293, 302, 311, 320, 329, 338, 347, 356, 365, 374, 383, 392, 401, 410, 419, 428, 437, 446, 455, 464, 473, 482
Offset: 0

Views

Author

Keywords

Comments

Numbers whose digital root is 5. - Halfdan Skjerning, Mar 15 2018

References

  • R. K. Guy, Unsolved Problems in Number Theory, Springer, 1st edition, 1981. See section D5.

Crossrefs

Sequences of the form (9*n+5)^k: this sequence (k=1), A017222 (k=2), A017223 (k=3), A017224 (k=4), A017225 (k=5), A017226 (k=6), A017227 (k=7), A017228 (k=8), A017229 (k=9), A017230 (k=10), A017231 (k=11).
Cf. similar sequences with closed form (2*k-1)*n+k listed in A269044.

Programs

Formula

G.f.: (5+4*x)/(1-x)^2. - R. J. Mathar, Mar 20 2018
From G. C. Greubel, Jan 06 2023: (Start)
a(n) = a(n-1) + 9, with a(0) = 5.
E.g.f.: (5 + 9*x)*exp(x). (End)
From Elmo R. Oliveira, Apr 10 2025: (Start)
a(n) = 2*a(n-1) - a(n-2).
a(n) = A016789(3*n+1). (End)