Project Euler Problem 448 - Average least common multiple (Sample Values)
- December 9, 2013
- project euler
- math project euler
- no comments
Table of Contents
Spoiler Alert! This blog entry contains content that might help you solve problem 448 of Project Euler. Please don’t read any further if you have yet to attempt to solve the problem on your own. The information is intended for those who failed to solve the problem and are looking for hints. It is posted not before the problem has a hundred solvers already.
Values for A(n)
n | A(n) |
---|---|
1 | 1 |
2 | 2 |
3 | 4 |
4 | 6 |
5 | 11 |
6 | 11 |
7 | 22 |
8 | 22 |
9 | 31 |
10 | 32 |
102 | 2866 |
103 | 279952 |
104 | 27832046 |
105 | 2779134172 |
106 | 277811686426 |
Values for S(n)
$$ \begin{equation} S(n) := \sum_{k=1}^{n}A(n) \end{equation} $$n | S(n) |
---|---|
1 | 1 |
2 | 3 |
3 | 7 |
4 | 13 |
5 | 24 |
6 | 35 |
7 | 57 |
8 | 79 |
9 | 110 |
10 | 142 |
102 | 122726 |
103 | 121954666 |
104 | 2804939762 |
105 | 27804630086 |
106 | 285919194892 |