A373675 Sums of maximal runs of powers of primes A000961.
15, 24, 11, 13, 33, 19, 23, 25, 27, 29, 63, 37, 41, 43, 47, 49, 53, 59, 61, 64, 67, 71, 73, 79, 81, 83, 89, 97, 101, 103, 107, 109, 113, 121, 125, 255, 131, 137, 139, 149, 151, 157, 163, 167, 169, 173, 179, 181, 191, 193, 197, 199, 211, 223, 227, 229, 233, 239
Offset: 1
Keywords
Examples
The maximal runs of powers of primes begin: 1 2 3 4 5 7 8 9 11 13 16 17 19 23 25 27 29 31 32 37 41 43 47 49
Links
Crossrefs
A025528 counts prime-powers up to n.
See link for composite, prime, nonsquarefree, and squarefree runs.
Programs
-
Mathematica
pripow[n_]:=n==1||PrimePowerQ[n]; Total/@Split[Select[Range[nn],pripow],#1+1==#2&]//Most
Comments