cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A379412 a(n) = n + floor(n*r/s) + floor(n*t/s), where r = e^(1/4); s = e^(1/2); t = e^(3/4).

This page as a plain text file.
%I A379412 #8 Jan 18 2025 09:26:05
%S A379412 2,5,8,12,14,17,20,24,27,29,33,36,39,41,45,48,51,55,57,60,63,67,69,72,
%T A379412 76,79,82,84,88,91,94,97,100,103,106,110,112,115,119,122,124,127,131,
%U A379412 134,137,140,143,146,149,152,155,158,162,165,167,170,174,177,179
%N A379412 a(n) = n + floor(n*r/s) + floor(n*t/s), where r = e^(1/4); s = e^(1/2); t = e^(3/4).
%C A379412 This sequence and A379411 and A379413 partition the positive integers.
%F A379412 a(n) = n + floor(n/r) + floor(n*r), where r = e^(1/4).
%t A379412 r = E^(1/4); s = E^(1/2); t = E^(3/4);
%t A379412 Table[n + Floor[n*s/r] + Floor[n*t/r], {n, 1, 120}]  (* A379411 *)
%t A379412 Table[n + Floor[n*r/s] + Floor[n*t/s], {n, 1, 120}]  (* A379412 *)
%t A379412 Table[n + Floor[n*r/t] + Floor[n*s/t], {n, 1, 120}]  (* A379413 *)
%Y A379412 Cf. A001113, A378142, A379411, A379413.
%K A379412 nonn
%O A379412 1,1
%A A379412 _Clark Kimberling_, Jan 15 2025