login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A355149 Partial sums of A351743. 1
1, 2, 4, 5, 10, 12, 15, 20, 24, 27, 28, 56, 57, 114, 116, 145, 150, 156, 169, 170, 340, 341, 682, 684, 855, 860, 1032, 1035, 1150, 1152, 1161, 1204, 1232, 1243, 1356, 1368, 1387, 1460, 1480, 1517, 1558, 1596, 1617, 1628, 1776, 1779, 2372, 2376, 2673, 2674 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
a(n) is odd iff n mod 3 = 1. Parity of a(n) is related to that of A351743(n).
LINKS
FORMULA
Conjecture: a(n + 42) = 3645*a(n) + b(n) for n >= 138 (where b is 42-periodic).
EXAMPLE
a(3) = A351743(1) + A351743(2) + A351743(3) = 1 + 1 + 2 = 4.
MATHEMATICA
nn = 50, a[1] = m = s = 1; Do[If[m == 1, Set[k, s], Set[k, s]; While[GCD[m, k] > 1, k /= GCD[m, k]]]; m = k; s += k; a[n] = s, {n, 2, nn}]; Array[a, nn]
PROG
(PARI) { s=0; for (n=1, 50, if (n==1, v=1, w=s; while (1 < g=gcd(w, v), w /= g); v=w); print1 (s+=v", ")) }
CROSSREFS
Cf. A351743.
Sequence in context: A120491 A177186 A260385 * A022944 A370593 A241822
KEYWORD
nonn
AUTHOR
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 12:28 EDT 2024. Contains 371969 sequences. (Running on oeis4.)