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!)
A083481 Squarefree part of the n-th oblong number. 5
2, 6, 3, 5, 30, 42, 14, 2, 10, 110, 33, 39, 182, 210, 15, 17, 34, 38, 95, 105, 462, 506, 138, 6, 26, 78, 21, 203, 870, 930, 62, 66, 1122, 1190, 35, 37, 1406, 1482, 390, 410, 1722, 1806, 473, 55, 230, 2162, 141, 3, 2, 102, 663, 689, 318, 330, 770, 798, 3306, 3422, 885 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Smallest k such that n*(n+1)*k is a perfect square.
k = p*q*r... is a squarefree number where p,q,r are those prime factors of n(n+1) which have odd index.
LINKS
John M. Campbell, An Integral Representation of Kekulé Numbers, and Double Integrals Related to Smarandache Sequences, arXiv preprint arXiv:1105.3399 [math.GM], 2011.
FORMULA
a(n) = A007913(n*(n+1)). - R. J. Mathar, Nov 02 2011
MAPLE
A083481 := proc(n)
A007913(n)*A007913(n+1) ;
end proc:
seq( A083481(n), n=1..40) ; # R. J. Mathar, Mar 15 2023
MATHEMATICA
sk[n_]:=Module[{k=1}, While[!IntegerQ[Sqrt[n*k]], k++]; k]; sk/@Table[n(n+1), {n, 60}] (* Harvey P. Dale, Mar 28 2013 *)
PROG
(PARI) a(n)=core(n*(n+1))
(Python)
from sympy.ntheory.factor_ import core
def A083481(n): return core(n*(n+1)) # Chai Wah Wu, Mar 20 2023
CROSSREFS
Sequence in context: A323335 A338444 A139384 * A177209 A274439 A280342
KEYWORD
nonn
AUTHOR
Amarnath Murthy and Meenakshi Srikanth (menakan_s(AT)yahoo.com), May 03 2003
EXTENSIONS
More terms from Benoit Cloitre, May 04 2003
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 15:20 EDT 2024. Contains 371916 sequences. (Running on oeis4.)