login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A113852
Numbers whose prime factors are raised to the seventh power.
6
128, 2187, 78125, 279936, 823543, 10000000, 19487171, 62748517, 105413504, 170859375, 410338673, 893871739, 1801088541, 2494357888, 3404825447, 8031810176, 17249876309, 21870000000, 27512614111, 42618442977, 52523350144, 64339296875, 94931877133, 114415582592
OFFSET
1,1
LINKS
FORMULA
From Amiram Eldar, Oct 13 2020: (Start)
a(n) = A005117(n+1)^7.
Sum_{n>=1} 1/a(n) = zeta(7)/zeta(14) - 1. (End)
MATHEMATICA
Select[ Range@34^7, Union[Last /@ FactorInteger@# ] == {7} &] (* Robert G. Wilson v *)
Select[Range[2, 34], SquareFreeQ]^7 (* Amiram Eldar, Oct 13 2020 *)
PROG
(PARI) allpwrfact(n, p) = \All prime factors are raised to the power p { local(x, j, ln, y, flag); for(x=4, n, y=Vec(factor(x)); ln = length(y[1]); flag=0; for(j=1, ln, if(y[2][j]==p, flag++); ); if(flag==ln, print1(x", ")); ) }
CROSSREFS
Proper subset of A001015.
Nonunit terms of A329332 column 7 in ascending order.
Sequence in context: A050754 A351605 A343287 * A046456 A092759 A056574
KEYWORD
easy,nonn
AUTHOR
Cino Hilliard, Jan 25 2006
EXTENSIONS
More terms from Robert G. Wilson v, Jan 26 2006
STATUS
approved