The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A163100 Triangle giving positive values of A147861. 8
1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 2, 2, 1, 1, 3, 1, 1, 2, 2, 1, 1, 1, 1, 2, 3, 3, 2, 1, 1, 1, 1, 2, 2, 1, 1, 3, 3, 1, 1, 2, 4, 2, 1, 1, 1, 1, 2, 3, 3, 2, 1, 1, 1, 1, 2, 4, 4, 2, 1, 1, 3, 3, 1, 1, 2, 2, 1, 1, 1, 1, 2, 3, 4, 4, 3, 2, 1, 1, 5, 1, 1, 2, 2, 1, 1, 3, 3, 1, 1, 2, 4, 4, 2, 1, 1, 1, 1, 2 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,7
LINKS
EXAMPLE
Triangle begins:
1;
1,1;
1,..1;
1,2,..1;
1,......1;
1,2,2,....1;
1,..........1;
1,2,..2,......1;
1,..3,..........1;
1,2,....2,........1;
1,..................1;
1,2,3,3,..2,..........1;
1,......................1;
1,2,........2,............1;
1,..3,..3,..................1;
1,2,..4,......2,..............1;
1,..............................1;
1,2,3,....3,....2,................1;
1,..................................1;
1,2,..4,4,........2,..................1;
1,..3,......3,..........................1;
1,2,................2,....................1;
1,..........................................1;
1,2,3,4,..4,..3,......2,......................1;
1,......5,......................................1;
1,2,....................2,........................1;
1,..3,..........3,..................................1;
1,2,..4,....4,............2,..........................1;
1,......................................................1;
1,2,3,..5,5,......3,........2,............................1;
...
Row sums: A117004.
MAPLE
A147861 := proc(n, k) if k<=0 or k > n then 0; else if n mod k = 0 then min(k, n/k) ; else 0; fi; fi; end proc: A163100 := proc(n, k) local dvs; dvs := sort(convert(numtheory[divisors](n), list)) ; min( op(k, dvs), n/op(k, dvs)) ; end: for n from 1 to 60 do for k from 1 to numtheory[tau](n) do printf("%d, ", A163100(n, k) ) ; end do; end do: # R. J. Mathar, Aug 01 2009
CROSSREFS
Sequence in context: A030419 A155052 A096284 * A139038 A322812 A259094
KEYWORD
easy,nonn,tabf
AUTHOR
Omar E. Pol, Jul 20 2009
EXTENSIONS
Extended beyond row 12 by R. J. Mathar, Aug 01 2009
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 June 2 03:32 EDT 2024. Contains 373032 sequences. (Running on oeis4.)