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!)
A360435 a(n) = A038547(3^n), smallest number with 3^n odd divisors. 2
9, 225, 11025, 1334025, 225450225, 65155115025, 23520996524025, 12442607161209225, 9070660620521525025, 7628425581858602546025, 7330916984166117046730025, 10036025351323414236973404225, 16870558615574659332352292502225, 31193662880197545105519388836614025, 68906801302356377138092329940080381225 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
a(prime(n) - 1) = A038547(A038547(prime(n))), n >= 1.
EXAMPLE
a(3) = A038547(3^3) = 11025 = 3^2 * 5^2 * 7^2,
a(8) = A038547(3^8) = 12442607161209225 = 3^2 * ... * 23^2,
a(9) = A038547(3^9) = 9070660620521525025 = 3^8 * 5^2 * ... * 23^2 since 23^2 = 529 < 3^6 = 729 < 29^2 = 841,
a(10) = A038547(3^10) = 7628425581858602546025 = 3^8 * 5^2 * ... * 29^2.
a(31) = A038547(3^31) = 3^8 * 5^8 * 7^2 * ... * 113^2.
a(70) = A038547(3^70) = 3^8 * 5^8 * 7^8 * 11^2 * ... * 337^2.
MATHEMATICA
value3[part_] := Module[{len=Length[part]}, Apply[Times, Map[#[[1]]^(3^#[[2]]-1)&, Transpose[{Map[Prime, Range[2, len+1]], part}]]]]
a360435[n_] := Module[{pL=Reverse[IntegerPartitions[n]], min, i=2, next}, min=value3[pL[[1]]]; While[i<=Length[pL]&&3^(3^pL[[i, 1]]-1)<min, next=value3[pL[[i]]]; If[next<min, min=next]; i++]; min]
Map[a360435, Range[15]]
PROG
(PARI) a(n)={my(m=vecprod(primes(n+1))^2/4, b=logint(logint(m, 3)+1, 3)); forpart(p=n, m=min(m, prod(i=1, #p, prime(1+i)^(3^p[#p+1-i]-1))), [1, b]); m} \\ Andrew Howroyd, Feb 07 2023
CROSSREFS
Sequence in context: A128492 A294971 A001818 * A369059 A095363 A138564
KEYWORD
nonn
AUTHOR
Hartmut F. W. Hoft, Feb 07 2023
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 May 4 17:24 EDT 2024. Contains 372257 sequences. (Running on oeis4.)