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

A001195
a(n) = floor(n*log((14/11)*n^(10/9))).
0
0, 2, 4, 7, 10, 13, 16, 20, 24, 27, 31, 36, 40, 44, 48, 53, 57, 62, 66, 71, 76, 80, 85, 90, 95, 100, 105, 110, 115, 120, 125, 130, 136, 141, 146, 152, 157, 162, 168, 173, 179, 184, 190, 195, 201, 206, 212, 218, 223, 229, 235, 240, 246, 252, 258, 263, 269, 275
OFFSET
1,2
MAPLE
a := n->floor(evalf(n*log((14/11)*n^(10/9)))):
seq(a(n), n=1..60);
MATHEMATICA
a[n_] := Floor[N[n Log[(14/11) n^(10/9)]]]; Table[a[n], {n, 50}] (* James C. McMahon, Dec 11 2023 *)
PROG
(PARI) a(n) = floor(n*log((14/11)*n^(10/9))) \\ Michel Marcus, Dec 12 2023
CROSSREFS
Sequence in context: A304116 A226596 A135678 * A295513 A194228 A194236
KEYWORD
nonn
AUTHOR
Herman H. Rosenfeld (herm3(AT)pacbell.net)
EXTENSIONS
Offset 1 from Michel Marcus, Dec 12 2023
STATUS
approved