[go: up one dir, main page]

login
Revisions by Shel Kaphan (See also Shel Kaphan's wiki page)

(Bold, blue-underlined text is an addition; faded, red-underlined text is a deletion.)

Showing entries 1-10 | older changes
Triangle read by rows: The n-th derivative of the logistic function written in terms of y, where y = 1/(1 + exp(-x)).
(history; published version)
#88 by Shel Kaphan at Fri May 24 17:22:30 EDT 2024
STATUS

editing

proposed

#87 by Shel Kaphan at Fri May 24 17:20:16 EDT 2024
COMMENTS

The Akiyama-Tanigawa algorithm applied to a sequence yields the same result as the Stirling-Bernoulli Transform applied to the same sequence. See Philippe Deléham's comment of Nov 05 2011May 26 2015. - Shel Kaphan, May 16 2024

STATUS

proposed

editing

Discussion
Fri May 24
17:22
Shel Kaphan: I just changed the date of previous comment that I referred to.  There were two comments by the same person and I had referenced the wrong one previously.
#86 by Shel Kaphan at Thu May 16 16:39:53 EDT 2024
STATUS

editing

proposed

Discussion
Thu May 16
16:49
Michel Marcus: so comment does not really apply to this sequence ?
17:13
Shel Kaphan: I would think it applies since according to the previous comment I quoted this sequence effectively defines the Stirling-Bernoulli transform.  I can't imagine another sequence that would be more relevant.
#85 by Shel Kaphan at Thu May 16 16:30:13 EDT 2024
COMMENTS

The Akiyama-Tanigawa algorithm applied to a sequence yields the same result as the Stirling-Bernoulli Transform applied to the same sequence. See Philippe Deléham's comment of Nov 05 2011. - Shel Kaphan, May 16 2024

STATUS

approved

editing

#82 by Shel Kaphan at Tue May 14 22:03:30 EDT 2024
STATUS

editing

proposed

#81 by Shel Kaphan at Tue May 14 22:00:05 EDT 2024
COMMENTS

Row sums for n > 0 are zero. - Shel Kaphan, May 14 2024

STATUS

approved

editing

Triangle in which j-th entry in i-th row is (i+1-j)^j, 0<=j<=i.
(history; published version)
#43 by Shel Kaphan at Sat May 11 10:16:59 EDT 2024
STATUS

editing

proposed

Discussion
Sun May 12
02:13
Kevin Ryde: Program code should be a 1 liner def T(i,j); return etc.  There's no merit in inefficient code for a sequence this easy.  (Yes present the mathematics, but program code is not mathematics.)
08:01
Shel Kaphan: Sorry, what's "inefficient"?  Some things don't fit on one line. Anyway ask Peter Luschny whose structure this is, and who has used it in a few places.  If you are referring to separating out the function being transformed from the transform, that is not "inefficient", it is for clarity and there *is* merit in that in program code. It doesn't affect the running time in any meaningful way.  And as always, if editors don't want something, simply revert.
08:02
Shel Kaphan: Or if you are referring to demonstrating that the AT transform produces the table, I think there's pedagogical merit, but if you don't want it, please just toss it.
17:33
Peter Luschny: Shel, your comment is fundamentally correct, but each case should be considered individually. In this case, I think Kevin's objection is justified, especially because there is a more efficient recursion here (see Zumkeller), and I am therefore deleting the program but leaving the comment.
#42 by Shel Kaphan at Sat May 11 10:16:48 EDT 2024
COMMENTS

The n-th diagonal consists of n^k. This can also be generated as the Akiyama-Tanigawa algorithm applied to the sequence binomial(n+k,k), k >= 0. See Python program below. - Shel Kaphan, May 03 2024

#39 by Shel Kaphan at Sat May 04 00:07:34 EDT 2024
PROG

(Python)

#38 by Shel Kaphan at Sat May 04 00:06:48 EDT 2024
PROG

for n in range(1, 8): print([n], ATtransform(n, 8, f)) # - Shel Kaphan, May 03 2024.