login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A109050
a(n) = lcm(n, 9).
3
0, 9, 18, 9, 36, 45, 18, 63, 72, 9, 90, 99, 36, 117, 126, 45, 144, 153, 18, 171, 180, 63, 198, 207, 72, 225, 234, 27, 252, 261, 90, 279, 288, 99, 306, 315, 36, 333, 342, 117, 360, 369, 126, 387, 396, 45, 414, 423, 144, 441, 450, 153, 468, 477, 54, 495, 504
OFFSET
0,2
FORMULA
a(n) = n*9/gcd(n, 9).
a(n) = 9*n/A109012(n) = 9*A106610(n). - R. J. Mathar, Apr 18 2011
Sum_{k=1..n} a(k) ~ (61/18) * n^2. - Amiram Eldar, Nov 26 2022
Sum_{n>=1} (-1)^(n+1)/a(n) = 7*log(2)/27. - Amiram Eldar, Sep 08 2023
MATHEMATICA
LCM[9, Range[0, 60]] (* Harvey P. Dale, Aug 21 2021 *)
PROG
(Sage) [lcm(n, 9)for n in range(0, 57)] # Zerinvary Lajos, Jun 09 2009
(Magma) [Lcm(n, 9): n in [0..100]]; // Vincenzo Librandi, Apr 18 2011
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Mitch Harris, Jun 18 2005
STATUS
approved