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!)
A349952 The smallest of 3 consecutive integers such that the first is divisible by the square of a prime, the second is divisible by the cube of a prime, and the third is divisible by the fourth power of a prime. 0
350, 1375, 2023, 11150, 11374, 12446, 13310, 13374, 15631, 17575, 19550, 21248, 21463, 21950, 22382, 25038, 25623, 26702, 27950, 29790, 29887, 31211, 31374, 32750, 33614, 33775, 35623, 36124, 40815, 41742, 43550, 45374, 47383, 48734, 49374, 49975, 54350, 54511 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
REFERENCES
George E. Andrews, Number Theory, Exercise 5 at p. 71 (Dover ed. 1994)
LINKS
MAPLE
q:= n-> min(map(t-> max(seq(i[2], i=ifactors(t)[2])), [$n..n+2])-[$1..3])>0:
select(q, [$1..60000])[]; # Alois P. Heinz, May 02 2022
MATHEMATICA
okQ[{a_, b_, c_}]:=Max[FactorInteger[a][[All, 2]]]>1&&Max[FactorInteger[b][[All, 2]]]>2&&Max[FactorInteger[c][[All, 2]]]>3; Select[Partition[Range[ 100000], 3, 1], okQ][[All, 1]]
PROG
(Python)
from sympy import factorint
from itertools import count, islice
def agen(): # generator of terms
kvec, fvec = [2, 3, 4], [{2: 1}, {3: 1}, {2: 2}]
for k in count(5):
if all(max(fvec[i].values())>=2+i for i in range(3)): yield kvec[0]
kvec, fvec = kvec[1:] + [k], fvec[1:] + [factorint(k)]
print(list(islice(agen(), 40))) # Michael S. Branicky, May 02 2022
CROSSREFS
Sequence in context: A074055 A304282 A190645 * A108776 A184609 A322668
KEYWORD
nonn
AUTHOR
Harvey P. Dale, May 02 2022
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 20:33 EDT 2024. Contains 371916 sequences. (Running on oeis4.)