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!)
A336825 a(n) is the smallest positive integer which is expressed by the greedy algorithm as the sum of exactly n prime-powers (including 1). 0
1, 6, 95, 360748 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Analogous to A066352 with prime-powers replacing primes.
LINKS
Steven and Jonathan Hoseana, The prime-power map, arXiv:2008.01368 [math.DS], 2020.
FORMULA
a(1) = 1 and, for every positive integer n, a(n+1) = a(n) + q1(n), where (q1(n), q2(n)) is the first pair of consecutive prime-powers with q2(n) - q1(n) >= a(n) + 1.
EXAMPLE
The greedy algorithm expresses every positive integer as a sum of prime-powers (including 1) by choosing the largest possible summand at each step. Consider the following initial data of such expressions:
1 = 1,
2 = 2,
3 = 3,
4 = 4,
5 = 5,
6 = 5 + 1,
7 = 7,
8 = 7 + 1,
9 = 9,
10 = 9 + 1.
The smallest positive integer which is expressed by the greedy algorithm as the sum of exactly 1 prime-power is a(1) = 1. The smallest positive integer which is expressed by the greedy algorithm as the sum of exactly 2 prime-powers is a(2) = 6. Similarly, a(3) = 95 (95 = 89 + 5 + 1) and a(4) = 360748 (360748 = 360653 + 89 + 5 + 1).
PROG
(PARI) ispp(n) = isprimepower(n) || (n==1); \\ A000961
f(n) = while(!ispp(n), n--); n; \\ A031218
nbs(n) = my(nb=0); while(n, n -= f(n); nb++); nb;
a(n) = my(k=1); while (nbs(k) != n, k++); k; \\ Michel Marcus, Aug 05 2020
CROSSREFS
Cf. A066352, A000961 (power of primes), A031218.
Sequence in context: A326436 A243802 A119627 * A116158 A275561 A116289
KEYWORD
nonn,more
AUTHOR
Jonathan Hoseana, Aug 04 2020
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 23 16:40 EDT 2024. Contains 371916 sequences. (Running on oeis4.)