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!)
A214845 Triangle read by rows: T(n,m) =(n/k)^(k-1) mod k, where k is the m-th divisor of n, 1 <= m <= tau(n). 1
0, 0, 1, 0, 1, 0, 0, 1, 0, 1, 0, 1, 1, 1, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 1, 1, 1, 0, 1, 0, 0, 1, 3, 2, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 3, 4, 1, 0, 1, 0, 0, 1, 1, 2, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 0, 0, 1, 0, 4, 3, 8, 1, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 1, 0, 0, 3, 1, 2, 1, 0, 1, 0, 1, 1, 1, 5, 3, 4, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,33
COMMENTS
Row lengths are tau(n) = A000005(n).
The sequence of row sums starts: 0, 1, 1, 1, 1, 3, 1, 1, 1, 3, 1, 7, 1, 3, 3, 1, 1, 9, 1, 5, 3, 3, 1, 17, 1, 3, 1, 7, 1, 16, 1, 1, 3, 3, 3, 26, 1, 3, 3, 19, 1, 12, 1, 7, 18, 3, 1, 27, 1, 23...
LINKS
EXAMPLE
Triangle begins:
0;
0,1;
0,1;
0,0,1;
0,1;
0,1,1,1;
0,1;
0,0,0,1;
0,0,1;
0,1,1,1;
0,1;
0,0,1,3,2,1;
0,1;
0,1,1,1;
0,1,1,1;
0,0,0,0,1;
0,1;
0,1,0,3,4,1;
MAPLE
A214845 := proc(n, m)
sort(convert(numtheory[divisors](n), list)) ;
k := op(m, %) ;
modp((n/k)^(k-1), k) ;
end proc:
for n from 1 to 30 do
for m from 1 to numtheory[tau](n) do
printf("%d, ", A214845(n, m)) ;
end do:
printf("\n") ;
end do: # R. J. Mathar, Apr 17 2013
CROSSREFS
Sequence in context: A257778 A325111 A242928 * A366766 A071960 A056898
KEYWORD
nonn,tabf,less
AUTHOR
Gerasimov Sergey, Mar 08 2013
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 25 16:39 EDT 2024. Contains 371989 sequences. (Running on oeis4.)