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!)
A373083 a(1) = 1; for n > 1, a(n) = a(n-1) + n if n is prime, else a(n) = a(n-1) + largest divisor of n < n. 1

%I #45 Jul 11 2024 13:16:39

%S 1,3,6,8,13,16,23,27,30,35,46,52,65,72,77,85,102,111,130,140,147,158,

%T 181,193,198,211,220,234,263,278,309,325,336,353,360,378,415,434,447,

%U 467,508,529,572,594,609,632,679,703,710,735,752,778,831,858,869,897

%N a(1) = 1; for n > 1, a(n) = a(n-1) + n if n is prime, else a(n) = a(n-1) + largest divisor of n < n.

%C Differs from A219730 at a(12).

%H James C. McMahon, <a href="/A373083/b373083.txt">Table of n, a(n) for n = 1..1000</a>

%F a(n) = a(n-1) + A117818(n) for n > 1. - _Michael De Vlieger_, Jun 23 2024

%e From _Michael De Vlieger_, Jun 23 2024: (Start)

%e Let lpf = A020639(n).

%e a(2) = 3 since 2 is prime, therefore a(1) + 2 = 3.

%e a(3) = 6 since 3 is prime, therefore a(2) + 3 = 6.

%e a(4) = 8 since 4 is not prime, therefore a(3) + 4/lpf(4) = 6 + 2 = 8.

%e a(5) = 13 since 5 is prime, therefore a(4) + 5 = 13.

%e a(6) = 16 since 6 is not prime, hence a(5) + 6/lpf(6) = 13 + 3 = 16, etc. (End)

%t a[1]=1;a[n_]:=If[PrimeQ[n],a[n-1]+n,a[n-1]+Divisors[n][[-2]]];Table[a[n],{n,56}]

%o (PARI) alist(N) = my(r, d); vector(N, n, r+=if(2<#d=divisors(n), d[#d-1], d[#d])); \\ _Ruud H.G. van Tol_, Jul 11 2024

%Y Cf. A117818, A219730.

%K nonn,easy

%O 1,2

%A _James C. McMahon_, Jun 17 2024

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 September 11 23:47 EDT 2024. Contains 375842 sequences. (Running on oeis4.)