login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

Odd numbers in the triangle of Eulerian numbers that are not 1.
2

%I #18 Nov 21 2018 11:36:37

%S 11,11,57,57,1191,1191,247,4293,15619,15619,4293,247,1013,1013,152637,

%T 152637,4083,478271,10187685,10187685,478271,4083,423281535,423281535,

%U 16369,2571742175,12843262863,12843262863,2571742175,16369,13824739

%N Odd numbers in the triangle of Eulerian numbers that are not 1.

%D R. L. Graham, D. E. Knuth and O. Patashnik, Concrete Mathematics. Addison-Wesley, Reading, MA, 1990, p. 254.

%H Vincenzo Librandi, <a href="/A014461/b014461.txt">Table of n, a(n) for n = 1..1050</a>

%t Select[Select[Flatten[Table[Plus@@Table[(-1)^k Binomial[i + 1, k] (j - k)^i, {k, 0, j}], {i, 1, 18}, {j, 1, i}]], OddQ], #!= 1 &] (* _Vincenzo Librandi_, Nov 19 2018 *)

%Y Cf. A008292.

%K nonn,tabf,easy

%O 1,1

%A _Mohammad K. Azarian_

%E More terms from _James A. Sellers_

%E Offset corrected by _Mohammad K. Azarian_, Nov 19 2008