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!)
A206778 Irregular triangle in which n-th row lists squarefree divisors (A005117) of n. 16
1, 1, 2, 1, 3, 1, 2, 1, 5, 1, 2, 3, 6, 1, 7, 1, 2, 1, 3, 1, 2, 5, 10, 1, 11, 1, 2, 3, 6, 1, 13, 1, 2, 7, 14, 1, 3, 5, 15, 1, 2, 1, 17, 1, 2, 3, 6, 1, 19, 1, 2, 5, 10, 1, 3, 7, 21, 1, 2, 11, 22, 1, 23, 1, 2, 3, 6, 1, 5, 1, 2, 13, 26, 1, 3, 1, 2, 7, 14, 1, 29 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
EXAMPLE
Triangle begins:
. 1: [1]
. 2: [1, 2]
. 3: [1, 3]
. 4: [1, 2]
. 5: [1, 5]
. 6: [1, 2, 3, 6]
. 7: [1, 7]
. 8: [1, 2]
. 9: [1, 3]
. 10: [1, 2, 5, 10]
. 11: [1, 11]
. 12: [1, 2, 3, 6].
MAPLE
A206778 := proc(n)
local sqdvs , nfac, d;
sqdvs := {} ;
nfac := ifactors(n)[2] ;
for d in numtheory[divisors](n) do
if issqrfree(d) then
sqdvs := sqdvs union {d} ;
end if;
end do:
sort(sqdvs) ;
end proc:
seq(op(A206778(n)), n=1..10) ; # R. J. Mathar, Mar 06 2023
MATHEMATICA
Flatten[Table[Select[Divisors[n], SquareFreeQ], {n, 30}]] (* Harvey P. Dale, Apr 11 2012 *)
PROG
(Haskell)
a206778 n k = a206778_row n !! k
a206778_row = filter ((== 1) . a008966) . a027750_row
a206778_tabf = map a206778_row [1..]
Reinhard Zumkeller, May 03 2013, Feb 12 2012
CROSSREFS
Cf. A008966, A034444 (row length), A048250 (row sums), A206787; A077610.
Sequence in context: A330569 A340785 A355758 * A101872 A251659 A174892
KEYWORD
nonn,tabf
AUTHOR
Reinhard Zumkeller, Feb 12 2012
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 16 17:08 EDT 2024. Contains 371749 sequences. (Running on oeis4.)