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”).

Multiples of 23.
6

%I #39 Nov 29 2023 11:47:44

%S 0,23,46,69,92,115,138,161,184,207,230,253,276,299,322,345,368,391,

%T 414,437,460,483,506,529,552,575,598,621,644,667,690,713,736,759,782,

%U 805,828,851,874,897,920,943,966,989,1012,1035,1058,1081,1104,1127,1150

%N Multiples of 23.

%H Vincenzo Librandi, <a href="/A008605/b008605.txt">Table of n, a(n) for n = 0..1000</a>

%H Tanya Khovanova, <a href="http://www.tanyakhovanova.com/RecursiveSequences/RecursiveSequences.html">Recursive Sequences</a>

%H INRIA Algorithms Project, <a href="http://ecs.inria.fr/services/structure?nbr=335">Encyclopedia of Combinatorial Structures 335</a>

%H Luis Manuel Rivera, <a href="http://arxiv.org/abs/1406.3081">Integer sequences and k-commuting permutations</a>, arXiv preprint arXiv:1406.3081 [math.CO], 2014-2015.

%H <a href="/index/Rec#order_02">Index entries for linear recurrences with constant coefficients</a>, signature (2,-1).

%F G.f.: 23*x/(x-1)^2. - _Vincenzo Librandi_, Jun 10 2013

%t Range[0, 1500, 23] (* _Vladimir Joseph Stephan Orlovsky_, Jun 01 2011 *)

%t CoefficientList[Series[23 x / (x - 1)^2, {x, 0, 60}], x] (* _Vincenzo Librandi_, Jun 10 2013 *)

%o (PARI) a(n)=23*n \\ _Charles R Greathouse IV_, Oct 07 2015

%Y Cf. A008602, A008603, A008604.

%K nonn,easy

%O 0,2

%A _N. J. A. Sloane_