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.

A029925 Convert n from degrees Celsius to nearest integer Fahrenheit.

This page as a plain text file.
%I A029925 #32 Jan 08 2024 10:13:23
%S A029925 32,34,36,37,39,41,43,45,46,48,50,52,54,55,57,59,61,63,64,66,68,70,72,
%T A029925 73,75,77,79,81,82,84,86,88,90,91,93,95,97,99,100,102,104,106,108,109,
%U A029925 111,113,115,117,118,120
%N A029925 Convert n from degrees Celsius to nearest integer Fahrenheit.
%D A029925 M. Abramowitz and I. A. Stegun, eds., Handbook of Mathematical Functions, National Bureau of Standards Applied Math. Series 55, Tenth Printing, 1972, p. 8.
%H A029925 Vincenzo Librandi, <a href="/A029925/b029925.txt">Table of n, a(n) for n = 0..2000</a>
%H A029925 M. Abramowitz and I. A. Stegun, eds., <a href="http://www.convertit.com/Go/ConvertIt/Reference/AMS55.ASP">Handbook of Mathematical Functions</a>, National Bureau of Standards, Applied Math. Series 55, Tenth Printing, 1972 [alternative scanned copy].
%H A029925 M. Abramowitz and I. A. Stegun, eds., <a href="http://www.convertit.com/Go/ConvertIt/Reference/AMS55.ASP">Handbook of Mathematical Functions</a>, National Bureau of Standards Applied Math. Series 55, Tenth Printing, 1972, p. 8.
%H A029925 Wikipedia, <a href="https://en.wikipedia.org/wiki/Temperature#Conversion">Temperature Conversion</a>
%H A029925 <a href="/index/Rec#order_06">Index entries for linear recurrences with constant coefficients</a>, signature (1,0,0,0,1,-1).
%F A029925 From _Reinhard Zumkeller_, May 03 2010: (Start)
%F A029925 a(n) = floor((18*n + 325)/10).
%F A029925 a(n) = A085259(n) + floor(A177154(n)/5).
%F A029925 A029926(a(n)) = n. (End)
%t A029925 Table[Floor[((18 n + 325) / 10)], {n, 0, 70}] (* _Vincenzo Librandi_, Jun 19 2017 *)
%t A029925 Table[Round[(9n)/5+32],{n,0,50}] (* _Harvey P. Dale_, Jun 19 2023 *)
%o A029925 (Magma) [Floor((18*n+325)/10): n in [0..70]]; // _Vincenzo Librandi_, Jun 19 2017
%Y A029925 Cf. A029926, A085259, A085268, A177154.
%K A029925 nonn,easy
%O A029925 0,1
%A A029925 _N. J. A. Sloane_