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

A103214
a(n) = 24*n + 1.
6
1, 25, 49, 73, 97, 121, 145, 169, 193, 217, 241, 265, 289, 313, 337, 361, 385, 409, 433, 457, 481, 505, 529, 553, 577, 601, 625, 649, 673, 697, 721, 745, 769, 793, 817, 841, 865, 889, 913, 937, 961, 985, 1009, 1033, 1057, 1081, 1105, 1129, 1153, 1177, 1201
OFFSET
0,2
FORMULA
From Elmo R. Oliveira, Mar 21 2024: (Start)
G.f.: (1+23*x)/(1-x)^2.
E.g.f.: exp(x)*(1 + 24*x).
a(n) = A255185(n+1) - A255185(n).
a(n) = 2*a(n-1) - a(n-2) for n >= 2. (End)
MATHEMATICA
Range[1, 2000, 24] (* Vladimir Joseph Stephan Orlovsky, Jun 14 2011 *)
PROG
(PARI) a(n)=24*n+1 \\ Charles R Greathouse IV, Jun 14 2011
(Magma) [24*n+1: n in [0..60]]; // Vincenzo Librandi, Jun 15 2011
CROSSREFS
Equals A008606 + 1. Bisection of A017533.
Cf. A255185.
Sequence in context: A020244 A020196 A020294 * A067778 A350061 A067893
KEYWORD
nonn,easy
AUTHOR
Ralf Stephan, Jan 28 2005
STATUS
approved